terminal: remove unnecessary todo

This commit is contained in:
Mitchell Hashimoto
2024-03-20 16:21:36 -07:00
parent b0c0307dda
commit a7f74a9dd6

View File

@ -1903,8 +1903,6 @@ pub fn decaln(self: *Terminal) !void {
self.screen.cursor.style = .{ self.screen.cursor.style = .{
.bg_color = self.screen.cursor.style.bg_color, .bg_color = self.screen.cursor.style.bg_color,
.fg_color = self.screen.cursor.style.fg_color, .fg_color = self.screen.cursor.style.fg_color,
// TODO: protected attribute
// .protected = self.screen.cursor.pen.attrs.protected,
}; };
errdefer self.screen.cursor.style = old_style; errdefer self.screen.cursor.style = old_style;
try self.screen.manualStyleUpdate(); try self.screen.manualStyleUpdate();