mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] spice: fix mouse warp on window focus
This commit is contained in:
parent
3b580af194
commit
5323d9833a
@ -816,8 +816,8 @@ static void handleMouseMoveEvent(int ex, int ey)
|
||||
if (delta.x == 0 && delta.y == 0)
|
||||
return;
|
||||
|
||||
state.curLastX = state.curLocalX = ex;
|
||||
state.curLastY = state.curLocalY = ey;
|
||||
state.curLastX = ex;
|
||||
state.curLastY = ey;
|
||||
state.haveCurLocal = true;
|
||||
|
||||
if (state.warpState == WARP_STATE_ACTIVE &&
|
||||
@ -992,7 +992,6 @@ static void handleWindowLeave()
|
||||
static void handleWindowEnter()
|
||||
{
|
||||
state.cursorInWindow = true;
|
||||
return;
|
||||
|
||||
if (state.warpState == WARP_STATE_OFF)
|
||||
state.warpState = WARP_STATE_ON;
|
||||
@ -1103,15 +1102,21 @@ int eventFilter(void * userdata, SDL_Event * event)
|
||||
break;
|
||||
|
||||
case EnterNotify:
|
||||
state.curLocalX = xe.xcrossing.x;
|
||||
state.curLocalY = xe.xcrossing.y;
|
||||
if (xe.xcrossing.detail != NotifyNonlinear)
|
||||
break;
|
||||
|
||||
state.curLastX = xe.xcrossing.x;
|
||||
state.curLastY = xe.xcrossing.y;
|
||||
state.haveCurLocal = true;
|
||||
handleWindowEnter();
|
||||
break;
|
||||
|
||||
case LeaveNotify:
|
||||
state.curLocalX = xe.xcrossing.x;
|
||||
state.curLocalY = xe.xcrossing.y;
|
||||
if (xe.xcrossing.detail != NotifyNonlinear)
|
||||
break;
|
||||
|
||||
state.curLastX = xe.xcrossing.x;
|
||||
state.curLastY = xe.xcrossing.y;
|
||||
state.haveCurLocal = true;
|
||||
handleWindowLeave();
|
||||
break;
|
||||
|
@ -82,8 +82,6 @@ struct AppState
|
||||
int curLastX;
|
||||
int curLastY;
|
||||
bool haveCurLocal;
|
||||
int curLocalX;
|
||||
int curLocalY;
|
||||
bool haveAligned;
|
||||
|
||||
enum WarpState warpState;
|
||||
|
Loading…
Reference in New Issue
Block a user