mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
the initial event mask now needs to include mouse motion events otherwise
the x11 clients will "lock up" when they start fullscreened
This commit is contained in:
parent
7feaa3d631
commit
9c9b6714be
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@
|
||||||
| PointerMotionMask)
|
| PointerMotionMask)
|
||||||
#define X11_FOCUS_MASK (FocusChangeMask | EnterWindowMask)
|
#define X11_FOCUS_MASK (FocusChangeMask | EnterWindowMask)
|
||||||
#define X11_INPUT_MASK (X11_KEY_MASK | X11_MOUSE_MASK | X11_FOCUS_MASK)
|
#define X11_INPUT_MASK (X11_KEY_MASK | X11_MOUSE_MASK | X11_FOCUS_MASK)
|
||||||
#define X11_MASK (X11_WINDOW_MASK | X11_FOCUS_MASK)
|
#define X11_MASK (X11_WINDOW_MASK | X11_FOCUS_MASK | PointerMotionMask)
|
||||||
|
|
||||||
extern Display *x_disp;
|
extern Display *x_disp;
|
||||||
extern Visual *x_vis;
|
extern Visual *x_vis;
|
||||||
|
|
Loading…
Reference in a new issue