Comment out overridden widths

This commit is contained in:
Marshall Bowers 2023-10-10 15:17:44 -04:00
parent a6ae6b0752
commit 5b7ca6435c

View file

@ -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()