mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-21 21:17:19 +00:00
[client] spice: stop if pointer left during guest warp
This prevents attempts to grab the pointer after the guest side warp finishes if the pointer has left the window in the meantime. On Wayland, this would result in the pointer moving to the middle of the window when the confine is created.
This commit is contained in:
parent
72f3a9f3cf
commit
df4a964496
@ -440,6 +440,10 @@ void core_handleMouseNormal(double ex, double ey)
|
||||
g_cursor.guest.x = msg.x;
|
||||
g_cursor.guest.y = msg.y;
|
||||
g_cursor.realign = false;
|
||||
|
||||
if (!g_cursor.inWindow)
|
||||
return;
|
||||
|
||||
core_setCursorInView(true);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user