diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-07 22:40:46 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-07 22:40:46 +0000 |
| commit | 268c13867de4d2524aba020a27487d3092b10cfe (patch) | |
| tree | f272c0d75fab9146ec3483c340df8a21635b42ba /openbox | |
| parent | fe59f32c6d66404313ca4879717f7c9bd7dbcf90 (diff) | |
bump version
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/event.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openbox/event.c b/openbox/event.c index c63f6fea..ed05a58d 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -723,6 +723,7 @@ static void event_handle_root(XEvent *e) } else if (msgtype == prop_atoms.net_showing_desktop) { screen_show_desktop(e->xclient.data.l[0] != 0, NULL); } else if (msgtype == prop_atoms.ob_control) { + ob_debug("OB_CONTROL: %d\n", e->xclient.data.l[0]); if (e->xclient.data.l[0] == 1) ob_reconfigure(); else if (e->xclient.data.l[0] == 2) @@ -730,8 +731,10 @@ static void event_handle_root(XEvent *e) } break; case PropertyNotify: - if (e->xproperty.atom == prop_atoms.net_desktop_names) + if (e->xproperty.atom == prop_atoms.net_desktop_names) { + ob_debug("UPDATE DESKTOP NAMES\n"); screen_update_desktop_names(); + } else if (e->xproperty.atom == prop_atoms.net_desktop_layout) screen_update_layout(); break; |
