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) } } }