mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-13 01:38:20 +00:00
[client] main: fix incorrectly hiding the cursor dot in captureOnly mode
This commit is contained in:
parent
85f3a71dd5
commit
d90e658e3b
@ -93,7 +93,7 @@ static void lgInit(void)
|
||||
g_cursor.guest.valid = false;
|
||||
|
||||
// if spice is not in use, hide the local cursor
|
||||
if (!core_inputEnabled() && g_params.hideMouse)
|
||||
if ((!g_params.useSpiceInput && g_params.hideMouse) || !g_params.showCursorDot)
|
||||
g_state.ds->setPointer(LG_POINTER_NONE);
|
||||
else
|
||||
g_state.ds->setPointer(LG_POINTER_SQUARE);
|
||||
|
Loading…
Reference in New Issue
Block a user