diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-04-17 10:35:46 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-04-17 10:35:46 +0400 |
| commit | c40d4f3268318ac295f21bfce38b9809c5e48f0d (patch) | |
| tree | 3fd5511353b871fb462b8dc4202e909bd8d7e6cf /src | |
| parent | 1b496ee21fab09fee819a5baf685dfd594690d23 (diff) | |
| download | niri-c40d4f3268318ac295f21bfce38b9809c5e48f0d.tar.gz niri-c40d4f3268318ac295f21bfce38b9809c5e48f0d.tar.bz2 niri-c40d4f3268318ac295f21bfce38b9809c5e48f0d.zip | |
Include resized window in left move
Diffstat (limited to 'src')
| -rw-r--r-- | src/layout/workspace.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/workspace.rs b/src/layout/workspace.rs index ff93ff2d..271f6639 100644 --- a/src/layout/workspace.rs +++ b/src/layout/workspace.rs @@ -1039,7 +1039,7 @@ impl<W: LayoutElement> Workspace<W> { ); } } else { - for col in &mut self.columns[..col_idx] { + for col in &mut self.columns[..=col_idx] { col.animate_move_from_with_config( -offset, self.options.animations.window_resize, |
