From 5b7ca6435c7ae3a10c166b4441ba47b6f7d047aa Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 10 Oct 2023 15:17:44 -0400 Subject: [PATCH] Comment out overridden widths --- crates/ui2/src/components/panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ui2/src/components/panel.rs b/crates/ui2/src/components/panel.rs index 32fe24f024..1a6b333a2c 100644 --- a/crates/ui2/src/components/panel.rs +++ b/crates/ui2/src/components/panel.rs @@ -112,7 +112,7 @@ impl Panel { panel_base = v_stack() .flex_initial() .h_full() - .w(current_width) + // .w(current_width) .w_64() .fill(theme.middle.base.default.background) .border_r() @@ -122,7 +122,7 @@ impl Panel { panel_base = v_stack() .flex_initial() .h_full() - .w(current_width) + // .w(current_width) .w_64() .fill(theme.middle.base.default.background) .border_l()