summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-04-07 21:15:58 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-04-07 21:15:58 -0400
commit46e0eee1d32bdf38376d197abf0dda4e70dec8fc (patch)
tree8361808eb60cc26b30ec300a1215412feb60c7c9
parentd2434bf8ada6a09834692b627489dc05dd7169bd (diff)
bug: fix issue with proc widget merging if in the same column as another
-rw-r--r--src/options/layout_options.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/options/layout_options.rs b/src/options/layout_options.rs
index adf76c2e..770a9f2a 100644
--- a/src/options/layout_options.rs
+++ b/src/options/layout_options.rs
@@ -222,7 +222,6 @@ impl Row {
.widget_type(BottomWidgetType::Proc)
.widget_id(iter_old_id)
.build()])
- .flex_grow(true)
.build(),
);
col_row_children.push(
@@ -255,7 +254,7 @@ impl Row {
// Multiply all non-proc or proc-search ratios by 2
if !child.children.is_empty() {
match child.children[0].widget_type {
- BottomWidgetType::Proc | BottomWidgetType::ProcSearch => {}
+ BottomWidgetType::ProcSearch => {}
_ => child.col_row_height_ratio *= 2,
}
}