mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] spice: always show the pointer if using input:captureOnly
This commit is contained in:
parent
4113294d30
commit
185c7764ba
@ -995,7 +995,8 @@ static void setCursorInView(bool enable)
|
||||
return;
|
||||
|
||||
g_cursor.inView = enable;
|
||||
g_cursor.draw = params.alwaysShowCursor ? true : enable;
|
||||
g_cursor.draw = (params.alwaysShowCursor || params.captureInputOnly)
|
||||
? true : enable;
|
||||
g_cursor.redraw = true;
|
||||
|
||||
/* if the display server does not support warp, then we can not operate in
|
||||
|
Loading…
Reference in New Issue
Block a user