diff options
| author | dam <devnull@localhost> | 2024-01-03 17:38:38 +0000 |
|---|---|---|
| committer | dam <devnull@localhost> | 2024-01-03 17:38:38 +0000 |
| commit | 381e62b9128123d12294df4aeae5430cd62349e9 (patch) | |
| tree | 8161c50a9dcf234048a514a9944a2e55d843e654 /TUI/module.jai | |
| parent | 37f3a0f812f0b408c323c7c240197ec3c3a1e2f7 (diff) | |
| download | task-time-tracker-381e62b9128123d12294df4aeae5430cd62349e9.tar.zst task-time-tracker-381e62b9128123d12294df4aeae5430cd62349e9.zip | |
Starting to implement windows specific procedures.
Diffstat (limited to 'TUI/module.jai')
| -rw-r--r-- | TUI/module.jai | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/TUI/module.jai b/TUI/module.jai index 73f9260..df88f0c 100644 --- a/TUI/module.jai +++ b/TUI/module.jai @@ -418,6 +418,8 @@ input_buffer : [8] u8; // TODO FIXME Input buffer is too small!!! input_string : string; input_override : Key; +was_resized : bool; + #run { // TODO FIXME DEBUG HACK or maybe... let it be?! // Some tests. @@ -628,7 +630,7 @@ user_line_input :: (count_limit: int, is_visible: bool = true) -> string, Key { } case; - if is_escape_code(key) continue; - TODO NOT WORKING FIX THIS + if is_escape_code(key) continue; // TODO NOT WORKING FIX THIS key_str := to_string(key); str.data[idx] = key_str.data[0]; idx += 1; |
