mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2025-07-03 16:25:31 +00:00
Read all pending X11 events during input handling
This commit is contained in:
parent
f79a99bc05
commit
697bee2954
@ -46,13 +46,11 @@ static Cursor cursor;
|
||||
static bool grabbed = True;
|
||||
|
||||
static int x11_handler(int fd) {
|
||||
if (!XPending(display))
|
||||
return LOOP_OK;
|
||||
|
||||
XEvent event;
|
||||
int button = 0;
|
||||
int motion_x, motion_y;
|
||||
|
||||
while (XPending(display)) {
|
||||
XNextEvent(display, &event);
|
||||
switch (event.type) {
|
||||
case KeyPress:
|
||||
@ -127,6 +125,7 @@ static int x11_handler(int fd) {
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return LOOP_OK;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user