diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-12-27 11:20:03 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-12-30 20:12:37 +0300 |
| commit | a24a6e4e3c441389fd7731320f47e61e567e237f (patch) | |
| tree | 0f93350f38a83af27ccb5549191323dc56cf9b4e /src/layout/scrolling.rs | |
| parent | 6fba4c371e7868f8d581cf3d49d611cdbb590ad4 (diff) | |
| download | niri-a24a6e4e3c441389fd7731320f47e61e567e237f.tar.gz niri-a24a6e4e3c441389fd7731320f47e61e567e237f.tar.bz2 niri-a24a6e4e3c441389fd7731320f47e61e567e237f.zip | |
Implement is-floating window rule matcher
Diffstat (limited to 'src/layout/scrolling.rs')
| -rw-r--r-- | src/layout/scrolling.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index 5b13d0c6..5d1b8234 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -2614,6 +2614,7 @@ impl<W: LayoutElement> ScrollingSpace<W> { let active_in_column = col.active_tile_idx == tile_idx; win.set_active_in_column(active_in_column); + win.set_floating(false); let active = is_active && self.active_column_idx == col_idx && active_in_column; win.set_activated(active); |
