mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 16:56:09 +03:00
terminal: fix unimplemented origin mode check
This commit is contained in:
@ -991,7 +991,7 @@ pub fn setCursorColAbsolute(self: *Terminal, col_req: usize) void {
|
||||
// TODO: test
|
||||
|
||||
// TODO
|
||||
if (!self.modes.get(.origin)) {
|
||||
if (self.modes.get(.origin)) {
|
||||
log.err("setCursorColAbsolute: cursor origin mode handling not implemented yet", .{});
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user