summary refs log tree commit diff
path: root/xutil.c
diff options
context:
space:
mode:
authorokan <okan>2013-10-19 19:39:34 +0000
committerokan <okan>2013-10-19 19:39:34 +0000
commita2013ee9dd9b152c044f8120a89c3d5aa17af4ea (patch)
tree71597013b401f6ff79ba57672fe6b53ed10714ca /xutil.c
parent083a023f2c0f36676d1015e1713ccac1b99bad59 (diff)
downloadcwm-a2013ee9dd9b152c044f8120a89c3d5aa17af4ea.tar.gz
cwm-a2013ee9dd9b152c044f8120a89c3d5aa17af4ea.tar.xz
cwm-a2013ee9dd9b152c044f8120a89c3d5aa17af4ea.zip
Using xu_btn_ungrab() buttons during client_leave doesn't work (error
BadValue) when the modifier is already AnyModifier .  Instead alter
xu_btn_ungrab() to ungrab AnyButton/AnyModifier and call it only when a
client is coming into focus in client_setactive(), instead of iterating
over ignore mods - matches how we handle key grabs.
Diffstat (limited to 'xutil.c')
-rw-r--r--xutil.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/xutil.c b/xutil.c
index 543b8b0..f33fa9a 100644
--- a/xutil.c
+++ b/xutil.c
@@ -65,12 +65,9 @@ xu_btn_grab(Window win, int mask, u_int btn)
 }
 
 void
-xu_btn_ungrab(Window win, int mask, u_int btn)
+xu_btn_ungrab(Window win)
 {
-	u_int	i;
-
-	for (i = 0; i < nitems(ign_mods); i++)
-		XUngrabButton(X_Dpy, btn, (mask | ign_mods[i]), win);
+	XUngrabButton(X_Dpy, AnyButton, AnyModifier, win);
 }
 
 void