mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] fixed realignment when in server mode
This commit is contained in:
parent
62ab543720
commit
b61ba15a9c
@ -679,10 +679,12 @@ int eventThread(void * arg)
|
|||||||
case SDL_MOUSEMOTION:
|
case SDL_MOUSEMOTION:
|
||||||
{
|
{
|
||||||
if (
|
if (
|
||||||
event.motion.x < state.dstRect.x ||
|
!serverMode && (
|
||||||
event.motion.x > state.dstRect.x + state.dstRect.w ||
|
event.motion.x < state.dstRect.x ||
|
||||||
event.motion.y < state.dstRect.y ||
|
event.motion.x > state.dstRect.x + state.dstRect.w ||
|
||||||
event.motion.y > state.dstRect.y + state.dstRect.h
|
event.motion.y < state.dstRect.y ||
|
||||||
|
event.motion.y > state.dstRect.y + state.dstRect.h
|
||||||
|
)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
realignGuest = true;
|
realignGuest = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user