summary refs log tree commit diff
path: root/mousefunc.c
diff options
context:
space:
mode:
authorokan <okan>2014-09-17 18:09:30 +0000
committerokan <okan>2014-09-17 18:09:30 +0000
commit458dd31b937e1ee84699ec346fd1304a14bb0cf6 (patch)
treef4ffb2d8e7b605e391e868c568f0c601a833e932 /mousefunc.c
parent736d973f4668d0c2db37b54c3ecfd41aa6e5ca39 (diff)
downloadcwm-458dd31b937e1ee84699ec346fd1304a14bb0cf6.tar.gz
cwm-458dd31b937e1ee84699ec346fd1304a14bb0cf6.tar.xz
cwm-458dd31b937e1ee84699ec346fd1304a14bb0cf6.zip
ewmh states _NET_WM_STATE_STICKY should not alter position
Diffstat (limited to 'mousefunc.c')
-rw-r--r--mousefunc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mousefunc.c b/mousefunc.c
index 8784039..0809166 100644
--- a/mousefunc.c
+++ b/mousefunc.c
@@ -73,7 +73,7 @@ mousefunc_client_resize(struct client_ctx *cc, union arg *arg)
 	struct screen_ctx	*sc = cc->sc;
 	int			 x = cc->geom.x, y = cc->geom.y;
 
-	if (cc->flags & CLIENT_FREEZE)
+	if (cc->flags & (CLIENT_FREEZE|CLIENT_STICKY))
 		return;
 
 	client_raise(cc);
@@ -130,7 +130,7 @@ mousefunc_client_move(struct client_ctx *cc, union arg *arg)
 
 	client_raise(cc);
 
-	if (cc->flags & CLIENT_FREEZE)
+	if (cc->flags & (CLIENT_FREEZE|CLIENT_STICKY))
 		return;
 
 	if (xu_ptr_grab(cc->win, MOUSEMASK, Conf.cursor[CF_MOVE]) < 0)