diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-02-07 09:36:08 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-02-10 07:29:33 -0800 |
| commit | c31b58e2c9a786fc8c96bba462190374535e6819 (patch) | |
| tree | 6b2b1e93b01cf3152c9e62fd483d4a09d02bfb05 /src/layout/tests.rs | |
| parent | b1630457571330335ece184ca5e7a1c1acffb107 (diff) | |
| download | niri-c31b58e2c9a786fc8c96bba462190374535e6819.tar.gz niri-c31b58e2c9a786fc8c96bba462190374535e6819.tar.bz2 niri-c31b58e2c9a786fc8c96bba462190374535e6819.zip | |
tab indicator: Implement place-within-column setting
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 83fef3bc..ecb9d683 100644 --- a/src/layout/tests.rs +++ b/src/layout/tests.rs @@ -3255,6 +3255,7 @@ prop_compose! { fn arbitrary_tab_indicator()( off in any::<bool>(), hide_when_single_tab in any::<bool>(), + place_within_column in any::<bool>(), width in arbitrary_spacing(), gap in arbitrary_spacing_neg(), length in (0f64..2f64), @@ -3263,6 +3264,7 @@ prop_compose! { niri_config::TabIndicator { off, hide_when_single_tab, + place_within_column, width: FloatOrInt(width), gap: FloatOrInt(gap), length: TabIndicatorLength { total_proportion: Some(length) }, |
