diff options
author | okan | 2013-05-20 21:19:15 +0000 |
---|---|---|
committer | okan | 2013-05-20 21:19:15 +0000 |
commit | be98599456a925ba103d775d8c46533b7a450e6f (patch) | |
tree | 238ee1aabd0d164de0ff7bee9619cf38926ced70 /xevents.c | |
parent | 450f620a8c0d62fc13281e6a68f7670b00e3d3cb (diff) | |
download | cwm-be98599456a925ba103d775d8c46533b7a450e6f.tar.gz |
handle _NET_ACTIVE_WINDOW ClientMessage; from Alexander Polakov.
Diffstat (limited to 'xevents.c')
-rw-r--r-- | xevents.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: xevents.c,v 1.79 2013/05/19 17:05:52 okan Exp $ + * $OpenBSD: xevents.c,v 1.80 2013/05/20 21:19:15 okan Exp $ */ /* @@ -340,7 +340,7 @@ static void xev_handle_clientmessage(XEvent *ee) { XClientMessageEvent *e = &ee->xclient; - struct client_ctx *cc; + struct client_ctx *cc, *old_cc; if ((cc = client_find(e->window)) == NULL) return; @@ -351,6 +351,14 @@ xev_handle_clientmessage(XEvent *ee) if (e->message_type == ewmh[_NET_CLOSE_WINDOW].atom) client_send_delete(cc); + + if (e->message_type == ewmh[_NET_ACTIVE_WINDOW].atom && + e->format == 32) { + old_cc = client_current(); + if (old_cc) + client_ptrsave(old_cc); + client_ptrwarp(cc); + } } static void |