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:
Bill Currie 2004-03-21 05:39:59 +00:00
parent 7feaa3d631
commit 9c9b6714be
1 changed files with 1 additions and 1 deletions

View File

@ -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;