From ab1eeeeb04895f5ca3edcb4c60a8783c397cf808 Mon Sep 17 00:00:00 2001 From: Suyog Tandel Date: Sun, 22 Feb 2026 16:26:53 +0530 Subject: [PATCH] fix(ui): application view overflowing out of the window --- src/ui/rootview.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui/rootview.rs b/src/ui/rootview.rs index ada02ea..89bfc7f 100644 --- a/src/ui/rootview.rs +++ b/src/ui/rootview.rs @@ -205,7 +205,9 @@ impl Render for ApplicationRoot { #[cfg(target_os = "macos")] let body = v_flex().size_full().child(title_bar).child( h_flex() - .size_full() + .w_full() + .flex_1() + .min_h(px(0.)) .child(sidebar.render(cx)) .child(content_area), );