gdk: Fix GDK_ALL_EVENTS_MASK
This mask was forgotten to update when the last 2 event masks were added, probably because it looks like it's already maxed.
This commit is contained in:
parent
7e49a02acf
commit
4c44ffda17
@ -451,7 +451,7 @@ typedef enum
|
||||
GDK_SMOOTH_SCROLL_MASK = 1 << 23,
|
||||
GDK_TOUCHPAD_GESTURE_MASK = 1 << 24,
|
||||
GDK_TABLET_PAD_MASK = 1 << 25,
|
||||
GDK_ALL_EVENTS_MASK = 0xFFFFFE
|
||||
GDK_ALL_EVENTS_MASK = 0x3FFFFFE
|
||||
} GdkEventMask;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user