diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2014-01-02 22:26:28 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2014-01-02 22:26:28 +0000 |
commit | 20b679a584b68d485b582011566d801234984d97 (patch) | |
tree | 1ba22814a083f627b7474866a5c6e29b36656950 /app/cwm | |
parent | 0a226b04d4c91535c2ac4eb148260dab02c9389c (diff) |
Accept _NET_WM_DESKTOP clientmessage; from Thomas Adam
Diffstat (limited to 'app/cwm')
-rw-r--r-- | app/cwm/xevents.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/cwm/xevents.c b/app/cwm/xevents.c index 78418244a..1f5cdc411 100644 --- a/app/cwm/xevents.c +++ b/app/cwm/xevents.c @@ -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.101 2014/01/02 21:30:20 okan Exp $ + * $OpenBSD: xevents.c,v 1.102 2014/01/02 22:26:27 okan Exp $ */ /* @@ -342,6 +342,10 @@ xev_handle_clientmessage(XEvent *ee) client_ptrsave(old_cc); client_ptrwarp(cc); } + + if (e->message_type == ewmh[_NET_WM_DESKTOP] && e->format == 32) + group_movetogroup(cc, e->data.l[0]); + if (e->message_type == ewmh[_NET_WM_STATE] && e->format == 32) xu_ewmh_handle_net_wm_state_msg(cc, e->data.l[0], e->data.l[1], e->data.l[2]); |