summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/events.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/events.c b/src/events.c
index 0bcffbe..3450da2 100644
--- a/src/events.c
+++ b/src/events.c
@@ -357,13 +357,25 @@ property_notify (XEvent *ev)
if (win)
{
- if (ev->xproperty.atom == XA_WM_NAME)
+ switch (ev->xproperty.atom)
{
+ case XA_WM_NAME:
PRINT_DEBUG ("updating window name\n");
if (update_window_name (win))
{
update_window_names (win->scr);
}
+ break;
+
+ case XA_WM_NORMAL_HINTS:
+ PRINT_DEBUG ("updating window normal hints\n");
+ update_normal_hints (win);
+ maximize (win);
+ break;
+
+ default:
+ PRINT_DEBUG ("Unhandled property notify event\n");
+ break;
}
}
}