diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-05-11 09:26:49 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-05-11 09:26:49 +0400 |
| commit | 2fd9a03bd71b4709659cdd35192109b47c3b0e10 (patch) | |
| tree | a419bad2e39ea38315e56e41e2cec1dbfca4b8f9 /src/handlers | |
| parent | b101f9b5f8acfb638f94962f76cbbb407d419664 (diff) | |
| download | niri-2fd9a03bd71b4709659cdd35192109b47c3b0e10.tar.gz niri-2fd9a03bd71b4709659cdd35192109b47c3b0e10.tar.bz2 niri-2fd9a03bd71b4709659cdd35192109b47c3b0e10.zip | |
Stop confining the pointer during resize grab
Diffstat (limited to 'src/handlers')
| -rw-r--r-- | src/handlers/xdg_shell.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/handlers/xdg_shell.rs b/src/handlers/xdg_shell.rs index 5e255d17..afd0bab9 100644 --- a/src/handlers/xdg_shell.rs +++ b/src/handlers/xdg_shell.rs @@ -100,6 +100,7 @@ impl XdgShellHandler for State { let grab = ResizeGrab::new(start_data, window); pointer.set_grab(self, grab, serial, Focus::Clear); + self.niri.interactive_resize_ongoing = true; } fn reposition_request( |
