From 52b210df4314451654036e01a4270a7ea1edb93a Mon Sep 17 00:00:00 2001 From: Kartios Date: Mon, 31 Aug 2026 17:21:57 -0700 Subject: [PATCH] fix: preserve 20 60 20 workspace proportions --- spikes/gpui-shell/src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spikes/gpui-shell/src/main.rs b/spikes/gpui-shell/src/main.rs index 2068322..431946a 100644 --- a/spikes/gpui-shell/src/main.rs +++ b/spikes/gpui-shell/src/main.rs @@ -1254,7 +1254,8 @@ impl Render for LumbridgeShell { let workspace_stack = div() .flex() .flex_col() - .size_full() + .flex_1() + .min_w_0() .min_h_0() .overflow_hidden() .child( @@ -1412,6 +1413,8 @@ impl Render for LumbridgeShell { .flex_col() .flex_1() .min_w_0() + .min_h_0() + .overflow_hidden() .child(tabs) .child(workspace_stack), ),