diff options
| author | gibberish <gbjgms@gmail.com> | 2025-06-16 17:23:29 +0700 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-08-27 09:17:58 +0300 |
| commit | e038b8770a17b67cbf9c9d007a1f3a9ac0b53c60 (patch) | |
| tree | 3a23444922e8b794ecb584374b39e71c2c661caf /src/input/mod.rs | |
| parent | f6f4bf97c368d9a8539137896f786291d859cadf (diff) | |
| download | niri-e038b8770a17b67cbf9c9d007a1f3a9ac0b53c60.tar.gz niri-e038b8770a17b67cbf9c9d007a1f3a9ac0b53c60.tar.bz2 niri-e038b8770a17b67cbf9c9d007a1f3a9ac0b53c60.zip | |
Fix focus=false for move-column-to-workspace*, add to move-window-to-workspace-up/down
Diffstat (limited to 'src/input/mod.rs')
| -rw-r--r-- | src/input/mod.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs index 724825e1..95d84b87 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -1138,14 +1138,14 @@ impl State { // FIXME: granular self.niri.queue_redraw_all(); } - Action::MoveWindowToWorkspaceDown => { - self.niri.layout.move_to_workspace_down(); + Action::MoveWindowToWorkspaceDown(focus) => { + self.niri.layout.move_to_workspace_down(focus); self.maybe_warp_cursor_to_focus(); // FIXME: granular self.niri.queue_redraw_all(); } - Action::MoveWindowToWorkspaceUp => { - self.niri.layout.move_to_workspace_up(); + Action::MoveWindowToWorkspaceUp(focus) => { + self.niri.layout.move_to_workspace_up(focus); self.maybe_warp_cursor_to_focus(); // FIXME: granular self.niri.queue_redraw_all(); |
