diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-06-07 11:06:15 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-06-07 11:06:15 +0200 |
commit | 8c8322a7a0c251d595a0df054324f82d41966e0a (patch) | |
tree | 4cb89c448e7a870acbc12205ed72b7ef4023709c /client/ui.h | |
parent | b81f15e6542d124ef22347e1b793894494695b3d (diff) |
fix tab bar flashing
Diffstat (limited to 'client/ui.h')
-rw-r--r-- | client/ui.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/ui.h b/client/ui.h index eb09739..a003cfc 100644 --- a/client/ui.h +++ b/client/ui.h @@ -14,6 +14,8 @@ typedef enum { extern WINDOW *g_w2_ui_win; extern WINDOW *g_w2_ui_pad_tabbar; +extern WINDOW *g_w2_ui_pad_statusbar; +extern WINDOW *g_w2_ui_pad_seperator; extern WINDOW *g_w2_ui_pad_body; extern int g_w2_ui_pad_body_scroll; extern unsigned int g_w2_ui_width; @@ -37,6 +39,8 @@ void w2_ui_main(); void w2_ui_paint_statusbar(); /** draw tab bar */ void w2_ui_paint_tabbar(); +/** draw seperator under tab bar */ +void w2_ui_paint_seperator(); void w2_ui_tabbar_init(); |