Don't warp if currently using tablet

The tablet will override the position anyway.
This commit is contained in:
Ivan Molodetskikh 2024-03-17 09:52:42 +04:00
parent f859f431b8
commit 95835045b6

View File

@ -479,6 +479,10 @@ impl State {
return false;
}
if self.niri.tablet_cursor_location.is_some() {
return false;
}
let Some(output) = self.niri.layout.active_output() else {
return false;
};