From 9f6d69227cdba3a2b1837bba68cab28d554e8706 Mon Sep 17 00:00:00 2001 From: Jason Hilder Date: Wed, 3 Jun 2026 07:36:18 +0200 Subject: [PATCH] Fixed incorrect layout for control bar. --- src/gui/gui.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/gui.odin b/src/gui/gui.odin index d218641..f180f10 100644 --- a/src/gui/gui.odin +++ b/src/gui/gui.odin @@ -89,9 +89,9 @@ calc_layout :: proc(screen_width: f32, screen_height: f32) -> Layout { control_bar = rl.Rectangle { x = sidebar_width, - y = 0, + y = display_height, width = screen_width - (sidebar_width * 2), - height = (screen_height * 0.05) + display_height + height = (screen_height * 0.05) } } }