From ae8beb20a2a837824cfda4d748fbe07b26a161f0 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 6 Jun 2022 19:48:09 +0200 Subject: tab bar working --- client/ui.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'client/ui.h') diff --git a/client/ui.h b/client/ui.h index cbf18ee..ccab75d 100644 --- a/client/ui.h +++ b/client/ui.h @@ -8,8 +8,8 @@ #define W2_UI_TAB_COUNT 2 typedef enum { W2_UI_TAB_START = 0, - W2_UI_TAB_DIRC = 1, -} w2_e_ui_tab; + W2_UI_TAB_DIRC = 1, +} w2_e_ui_tabs; extern WINDOW *g_w2_ui_win; extern WINDOW *g_w2_ui_pad_tabbar; @@ -17,7 +17,7 @@ extern WINDOW *g_w2_ui_pad_body; extern unsigned int g_w2_ui_width; extern unsigned int g_w2_ui_height; extern void (*g_w2_tab_ptrs[W2_UI_TAB_COUNT])(bool first); -extern w2_e_ui_tab g_w2_ui_current_tab; +extern w2_e_ui_tabs g_w2_ui_current_tab; /** update terminal props */ void w2_ui_update(); @@ -40,6 +40,3 @@ void w2_ui_tab_start(bool first); void w2_wmvaddstr(WINDOW *win, unsigned int y, unsigned int x, char *str); void w2_wmvaddnstr(WINDOW *win, unsigned int y, unsigned int x, char *str, unsigned int len); - - - -- cgit v1.2.3