mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-21 19:26:09 +03:00
quiet noisy log
This commit is contained in:
@ -404,7 +404,7 @@ pub fn setCursorPos(self: *Terminal, row: usize, col: usize) void {
|
|||||||
|
|
||||||
self.screen.cursor.x = @minimum(params.x_max, col) -| 1;
|
self.screen.cursor.x = @minimum(params.x_max, col) -| 1;
|
||||||
self.screen.cursor.y = @minimum(params.y_max, row + params.y_offset) -| 1;
|
self.screen.cursor.y = @minimum(params.y_max, row + params.y_offset) -| 1;
|
||||||
log.info("set cursor position: col={} row={}", .{ self.screen.cursor.x, self.screen.cursor.y });
|
// log.info("set cursor position: col={} row={}", .{ self.screen.cursor.x, self.screen.cursor.y });
|
||||||
|
|
||||||
// Unset pending wrap state
|
// Unset pending wrap state
|
||||||
self.screen.cursor.pending_wrap = false;
|
self.screen.cursor.pending_wrap = false;
|
||||||
|
Reference in New Issue
Block a user