mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-15 05:23:02 +00:00
[client] mouse: remove erroneous guard for setCursorInView
This seems like a leftover from ef678ba
, but the guard already exists in
setCursorInView itself.
This commit is contained in:
parent
f1033fa4bb
commit
c69b86ab6e
1 changed files with 0 additions and 5 deletions
|
@ -1121,13 +1121,8 @@ void app_handleMouseBasic()
|
|||
g_cursor.pos.y >= g_state.dstRect.y &&
|
||||
g_cursor.pos.y < g_state.dstRect.y + g_state.dstRect.h;
|
||||
|
||||
if (params.hideMouse && inView != g_cursor.inView)
|
||||
|
||||
if (inView != g_cursor.inView)
|
||||
{
|
||||
g_cursor.inView = inView;
|
||||
setCursorInView(inView);
|
||||
}
|
||||
|
||||
if (g_cursor.guest.dpiScale == 0)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue