summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
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);
}