X11 mouse is invisible even if hideCursor is false

x11Init assumes you're going to be hiding the mouse, so defines the
cursor unconditionally.
This commit is contained in:
Harik
2022-09-15 16:57:10 -04:00
parent f5e68711d0
commit aa9472e6b6
3 changed files with 15 additions and 3 deletions

View File

@@ -97,6 +97,8 @@ typedef struct LG_DSInitParams
// x11 needs to know if this is in use so we can decide to setup for
// presentation times
bool jitRender;
// x11 needs this early to not override the defaults.
bool hideMouse;
}
LG_DSInitParams;