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/setup.c | |
parent | b81f15e6542d124ef22347e1b793894494695b3d (diff) |
fix tab bar flashing
Diffstat (limited to 'client/setup.c')
-rw-r--r-- | client/setup.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/client/setup.c b/client/setup.c index e51965f..8b5d07a 100644 --- a/client/setup.c +++ b/client/setup.c @@ -43,8 +43,10 @@ void w2_client_setup(int argc, char **argv) { g_w2_ui_width = getmaxx(g_w2_ui_win); g_w2_ui_height = getmaxy(g_w2_ui_win); - g_w2_ui_pad_tabbar = newpad(1, g_w2_ui_width); - g_w2_ui_pad_body = newpad(g_w2_ui_height - 5, g_w2_ui_width); + g_w2_ui_pad_tabbar = newpad(1, g_w2_ui_width); + g_w2_ui_pad_body = newpad(g_w2_ui_height - 5, g_w2_ui_width); + g_w2_ui_pad_statusbar = newpad(2, g_w2_ui_width); + g_w2_ui_pad_seperator = newpad(1, g_w2_ui_width); scrollok(g_w2_ui_pad_body, true); // check endianness |