fix: remove set_terminal_style testing code

closes #26
This commit is contained in:
CJ van den Berg 2024-08-20 22:30:21 +02:00
parent a3229c6af8
commit b831d99d1c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -327,7 +327,6 @@ pub fn set_terminal_style(self: *Self, style_: Style) void {
self.vx.setTerminalForegroundColor(self.tty.anyWriter(), vaxis.Cell.Color.rgbFromUint(@intCast(color)).rgb) catch {};
if (style_.bg) |color|
self.vx.setTerminalBackgroundColor(self.tty.anyWriter(), vaxis.Cell.Color.rgbFromUint(@intCast(color)).rgb) catch {};
self.vx.state.changed_default_bg = false;
}
pub fn set_terminal_working_directory(self: *Self, absolute_path: []const u8) void {