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:
parent
4f068365c6
commit
6d7a316abb
1 changed files with 2 additions and 2 deletions
|
@ -370,8 +370,8 @@ fn update_window_style(self: *Self) void {
|
||||||
|
|
||||||
pub fn set_terminal_cursor_color(self: *Self, color: Color) void {
|
pub fn set_terminal_cursor_color(self: *Self, color: Color) void {
|
||||||
_ = self;
|
_ = self;
|
||||||
std.log.warn("TODO: set_terminal_cursor_color '{any}'", .{color});
|
_ = color;
|
||||||
//self.vx.setTerminalCursorColor(self.tty.anyWriter(), vaxis.Cell.Color.rgbFromUint(@intCast(color.color)).rgb) catch {};
|
//@panic("todo");
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_terminal_working_directory(self: *Self, absolute_path: []const u8) void {
|
pub fn set_terminal_working_directory(self: *Self, absolute_path: []const u8) void {
|
||||||
|
|
Loading…
Add table
Reference in a new issue