From a5e4f8725d74c2dbc3df35249b6dbdd061e44997 Mon Sep 17 00:00:00 2001 From: dam Date: Tue, 14 May 2024 10:14:26 +0100 Subject: Added note/documentation about allowWindowOps on xterm. --- modules/TUI/module.jai | 1 + 1 file changed, 1 insertion(+) (limited to 'modules') diff --git a/modules/TUI/module.jai b/modules/TUI/module.jai index 70675c7..fb742da 100644 --- a/modules/TUI/module.jai +++ b/modules/TUI/module.jai @@ -689,6 +689,7 @@ get_terminal_size :: () -> width: int, height: int { } // Some systems don't allow to query the terminal size directly... or the answer takes too much time. // In such cases, measure it indirectly by the maximum possible cursor position. + // (e.g.: allowWindowOps/disallowedWindowOps properties in xterm) else { x, y := get_cursor_position(); defer set_cursor_position(x, y); -- cgit v1.2.3