From e48c3323aaea982c8b2d5075e0ac6814901ac357 Mon Sep 17 00:00:00 2001 From: "Jamie C. Driver" Date: Fri, 1 Sep 2023 17:19:17 +0100 Subject: [PATCH] squashme: prefer screen-relative sizing over absolute --- main/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/gui.c b/main/gui.c index 3f604f08..dcb5fb11 100644 --- a/main/gui.c +++ b/main/gui.c @@ -97,7 +97,7 @@ static void make_status_bar(void) root->parent = NULL; gui_view_node_t* hsplit; - gui_make_hsplit(&hsplit, GUI_SPLIT_ABSOLUTE, 4, 160, 20, 20, 40); + gui_make_hsplit(&hsplit, GUI_SPLIT_RELATIVE, 4, 67, 8, 8, 17); gui_set_parent(hsplit, root); gui_view_node_t* black_title_bg;