diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-12-28 12:06:22 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-12-30 20:12:37 +0300 |
| commit | 4ea4d2bd3bea5407c6ddc0ee33f55025ffc1bf38 (patch) | |
| tree | a1a0d3162e6411e141d0996c9f87f3d09a2562d0 /src/input | |
| parent | 6c52077d922dce3a9b57c6785647b6befb700ac9 (diff) | |
| download | niri-4ea4d2bd3bea5407c6ddc0ee33f55025ffc1bf38.tar.gz niri-4ea4d2bd3bea5407c6ddc0ee33f55025ffc1bf38.tar.bz2 niri-4ea4d2bd3bea5407c6ddc0ee33f55025ffc1bf38.zip | |
layout: Add animate arg to move_floating_window()
Diffstat (limited to 'src/input')
| -rw-r--r-- | src/input/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs index 83336fb3..9dd86179 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -1373,7 +1373,9 @@ impl State { None }; - self.niri.layout.move_floating_window(window.as_ref(), x, y); + self.niri + .layout + .move_floating_window(window.as_ref(), x, y, true); // FIXME: granular self.niri.queue_redraw_all(); } |
