diff options
author | sabetts <sabetts> | 2000-09-05 22:29:22 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2000-09-05 22:29:22 +0000 |
commit | f11686e4d9141d05a97031785380ef1be3694804 (patch) | |
tree | 21c023d33f486966bee60d0942fc673da3c93346 /events.c | |
parent | f9d451208217f6861a8b0f2b7bb070585a2e385c (diff) | |
download | ratpoison-f11686e4d9141d05a97031785380ef1be3694804.zip |
in property_notify(), when the name of a window changes, update the
program bar.
Diffstat (limited to 'events.c')
-rw-r--r-- | events.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -345,12 +345,14 @@ property_notify (XEvent *ev) printf ("atom: %ld\n", ev->xproperty.atom); win = find_window (ev->xproperty.window); + if (win) { if (ev->xproperty.atom == XA_WM_NAME) { printf ("updating window name\n"); - update_window_name (win); + update_window_name (win); + update_window_names (win->scr); } } } |