diff options
author | Mattias Andrée <maandree@kth.se> | 2018-01-06 20:17:27 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-01-06 20:17:27 +0100 |
commit | 8245761fd50021f115f36ed9540a6399dd79d50c (patch) | |
tree | 00233068500daaafdf404105e4dcd5ced5029a98 /xcman.c | |
parent | m (diff) | |
download | xcman-8245761fd50021f115f36ed9540a6399dd79d50c.tar.gz xcman-8245761fd50021f115f36ed9540a6399dd79d50c.tar.bz2 xcman-8245761fd50021f115f36ed9540a6399dd79d50c.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | xcman.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -655,12 +655,12 @@ main(int argc, char **argv) if ((ev.type & 0x7F) != KeymapNotify) discard_ignore(ev.xany.serial); switch (ev.type) { - case CreateNotify: add_window(ev.xcreatewindow.window); break; - case ConfigureNotify: configure_window(&ev.xconfigure); break; - case DestroyNotify: destroy_window(ev.xdestroywindow.window, 1); break; - case CirculateNotify: circulate_window(&ev.xcirculate); break; - case MapNotify: map_window(ev.xmap.window); break; - case UnmapNotify: unmap_window(ev.xunmap.window); break; + case CreateNotify: add_window(ev.xcreatewindow.window); break; + case ConfigureNotify: configure_window(&ev.xconfigure); break; + case DestroyNotify: destroy_window(ev.xdestroywindow.window, 1); break; + case CirculateNotify: circulate_window(&ev.xcirculate); break; + case MapNotify: map_window(ev.xmap.window); break; + case UnmapNotify: unmap_window(ev.xunmap.window); break; case ReparentNotify: if (ev.xreparent.parent == root) add_window(ev.xreparent.window); |