diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-04-19 13:36:49 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-04-19 13:48:39 +0400 |
| commit | 568c35ff876f126bb66ec7d7fb59a62424e6f8b5 (patch) | |
| tree | d3a4929a5b98a6af9a486c317e42a314d72bff76 /src/layout/mod.rs | |
| parent | c4f600bdedbfb4d68440727c5c54e6b1b85062ec (diff) | |
| download | niri-568c35ff876f126bb66ec7d7fb59a62424e6f8b5.tar.gz niri-568c35ff876f126bb66ec7d7fb59a62424e6f8b5.tar.bz2 niri-568c35ff876f126bb66ec7d7fb59a62424e6f8b5.zip | |
Synchronize column removal anim on consume left/right
Visible when consuming left/right when always-centered and differing
horizontal view anim.
Diffstat (limited to 'src/layout/mod.rs')
| -rw-r--r-- | src/layout/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 5cd19267..68b592db 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -1427,7 +1427,7 @@ impl<W: LayoutElement> Layout<W> { let width = column.width; let is_full_width = column.is_full_width; let window = ws - .remove_tile_by_idx(ws.active_column_idx, column.active_tile_idx) + .remove_tile_by_idx(ws.active_column_idx, column.active_tile_idx, None) .into_window(); let workspace_idx = monitors[new_idx].active_workspace_idx; |
