Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,9 @@ static void checkDisplay (Thread thread, boolean multiple) {
}

long checkIfEventProc (long display, long xEvent, long userData) {
if (GTK.GTK4) {
return 0;
}
int type = OS.X_EVENT_TYPE (xEvent);
switch (type) {
case OS.Expose:
Expand Down
Loading