aboutsummaryrefslogtreecommitdiff
path: root/ttt.jai
diff options
context:
space:
mode:
authordam <dam@gudinoff>2024-05-20 23:19:55 +0100
committerdam <dam@gudinoff>2024-05-20 23:19:55 +0100
commit22e3b95ce23808ee08a5fa3b0481c17c2e5506d6 (patch)
treef60be3b1a12dc2c6897e03c7a0690eb872b17ef6 /ttt.jai
parentaf1317ed93f7d5fc16baceaadb0da17aa17591be (diff)
downloadtask-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.jai2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttt.jai b/ttt.jai
index d5d6e4e..1bfabd0 100644
--- a/ttt.jai
+++ b/ttt.jai
@@ -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);