summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-04-16 12:22:40 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-04-16 12:22:40 +0200
commita01fd03d79e61e9ca0afe4cab4208179b6df36de (patch)
tree742ace1f6928b55820f11c7943fc967f1669388e /main.c
parent6ac76fddad885eb23ff019ae36a86c8bb487670b (diff)
downloadglitch-a01fd03d79e61e9ca0afe4cab4208179b6df36de.tar.gz
Fix Wine bug not sending keypresses and mouse position offset
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.c b/main.c
index 9bc3a4b..3ca830f 100644
--- a/main.c
+++ b/main.c
@@ -72,6 +72,9 @@ int main(int argc, char *argv[]) {
case MapRequest:
handle_map_request();
break;
+ case MapNotify:
+ handle_map_notify();
+ break;
case UnmapNotify:
handle_unmap_notify();
break;
@@ -116,6 +119,9 @@ int main(int argc, char *argv[]) {
case ConfigureRequest:
handle_configure_request();
break;
+ case ConfigureNotify:
+ handle_configure_notify();
+ break;
}
XUnlockDisplay(wm.dpy);
}