mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-10 22:33:58 +00:00
[client] fix regression causing failure to warp when exiting the window
This commit is contained in:
parent
3774d2bfe9
commit
8e604667f9
1 changed files with 1 additions and 1 deletions
|
@ -904,7 +904,7 @@ void spiceClipboardRequest(const SpiceDataType type)
|
||||||
|
|
||||||
static bool warpPointer(int x, int y, bool exiting)
|
static bool warpPointer(int x, int y, bool exiting)
|
||||||
{
|
{
|
||||||
if (!g_cursor.inWindow)
|
if (!g_cursor.inWindow && !exiting)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (g_cursor.warpState == WARP_STATE_OFF)
|
if (g_cursor.warpState == WARP_STATE_OFF)
|
||||||
|
|
Loading…
Reference in a new issue