diff options
author | sabetts <sabetts> | 2000-09-05 22:33:35 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2000-09-05 22:33:35 +0000 |
commit | 8aadf506507fcdf6d8a5a6a11445464e66d7f9fa (patch) | |
tree | 81f2f1d7098cd3647cb28f9ba747e82a1fa8826a /events.c | |
parent | f11686e4d9141d05a97031785380ef1be3694804 (diff) | |
download | ratpoison-8aadf506507fcdf6d8a5a6a11445464e66d7f9fa.zip |
respects return value of update_window_name in property_notify().
Diffstat (limited to 'events.c')
-rw-r--r-- | events.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -351,8 +351,10 @@ property_notify (XEvent *ev) if (ev->xproperty.atom == XA_WM_NAME) { printf ("updating window name\n"); - update_window_name (win); - update_window_names (win->scr); + if (update_window_name (win)) + { + update_window_names (win->scr); + } } } } |