diff options
| author | dam <dam@gudinoff> | 2024-05-20 23:19:55 +0100 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2024-05-20 23:19:55 +0100 |
| commit | 22e3b95ce23808ee08a5fa3b0481c17c2e5506d6 (patch) | |
| tree | f60be3b1a12dc2c6897e03c7a0690eb872b17ef6 /ttt.jai | |
| parent | af1317ed93f7d5fc16baceaadb0da17aa17591be (diff) | |
| download | task-time-tracker-22e3b95ce23808ee08a5fa3b0481c17c2e5506d6.tar.zst task-time-tracker-22e3b95ce23808ee08a5fa3b0481c17c2e5506d6.zip | |
Updated TUI module to clear inside error message box.
Diffstat (limited to 'ttt.jai')
| -rw-r--r-- | ttt.jai | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,7 +141,7 @@ draw_error_window :: () { pos_y := 1 + (size_y - w_size_y) / 2; TUI.using_style(style_error); - TUI.draw_box(pos_x, pos_y, w_size_x, w_size_y); + TUI.draw_box(pos_x, pos_y, w_size_x, w_size_y, true); TUI.set_cursor_position(pos_x + 1, pos_y); write_string(" Error "); TUI.set_cursor_position(pos_x + 1, pos_y + 1); |
