diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-10 23:57:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-10 23:57:33 +0000 |
| commit | f6265e82e6b195d9f817f3e794456bce54c7c8b6 (patch) | |
| tree | 74bafa6b60bccaf534d24bc05ec1e048913482b2 /openbox/focus.c | |
| parent | ccebe3c441a67c4a15de19a14d7b8636a8d0329c (diff) | |
1) Remove support for the Urgent hint. This will no longer do anything within Openbox
2) Add support for _NET_WM_STATE_DEMANDS_ATTENTION. Yay!
Diffstat (limited to 'openbox/focus.c')
| -rw-r--r-- | openbox/focus.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openbox/focus.c b/openbox/focus.c index 02832cea..40d961fd 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -201,6 +201,10 @@ void focus_set_client(ObClient *client) active = client ? client->window : None; PROP_SET32(RootWindow(ob_display, ob_screen), net_active_window, window, active); + + /* remove hiliting from the window when it gets focused */ + if (client != NULL) + client_hilite(client, FALSE); } } |
