Comment out overridden widths

Marshall Bowers created

Change summary

crates/ui2/src/components/panel.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/ui2/src/components/panel.rs 🔗

@@ -112,7 +112,7 @@ impl<S: 'static + Send + Sync> Panel<S> {
                 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<S: 'static + Send + Sync> Panel<S> {
                 panel_base = v_stack()
                     .flex_initial()
                     .h_full()
-                    .w(current_width)
+                    // .w(current_width)
                     .w_64()
                     .fill(theme.middle.base.default.background)
                     .border_l()