diff options
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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); } |
