From a01fd03d79e61e9ca0afe4cab4208179b6df36de Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 16 Apr 2026 12:22:40 +0200 Subject: Fix Wine bug not sending keypresses and mouse position offset --- main.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'main.c') 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); } -- cgit v1.2.3