fix(win32 gui): remove warning about set_terminal_cursor_color implementation

It won't be implemented until we support terminal cursor rendering.
This commit is contained in:
CJ van den Berg 2025-01-08 12:22:12 +01:00
parent 4f068365c6
commit 6d7a316abb
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -370,8 +370,8 @@ fn update_window_style(self: *Self) void {
pub fn set_terminal_cursor_color(self: *Self, color: Color) void {
_ = self;
std.log.warn("TODO: set_terminal_cursor_color '{any}'", .{color});
//self.vx.setTerminalCursorColor(self.tty.anyWriter(), vaxis.Cell.Color.rgbFromUint(@intCast(color.color)).rgb) catch {};
_ = color;
//@panic("todo");
}
pub fn set_terminal_working_directory(self: *Self, absolute_path: []const u8) void {