diff options
Diffstat (limited to 'src/layout/tests.rs')
| -rw-r--r-- | src/layout/tests.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/layout/tests.rs b/src/layout/tests.rs index 5c1749a3..dee23fc0 100644 --- a/src/layout/tests.rs +++ b/src/layout/tests.rs @@ -3242,12 +3242,14 @@ prop_compose! { prop_compose! { fn arbitrary_tab_indicator()( off in any::<bool>(), + hide_when_single_tab in any::<bool>(), width in arbitrary_spacing(), gap in arbitrary_spacing_neg(), length in (0f64..2f64), ) -> niri_config::TabIndicator { niri_config::TabIndicator { off, + hide_when_single_tab, width: FloatOrInt(width), gap: FloatOrInt(gap), length: TabIndicatorLength { total_proportion: Some(length) }, |
