aboutsummaryrefslogtreecommitdiffstats
path: root/xutil.c
diff options
context:
space:
mode:
authorokan2013-10-20 01:55:32 +0000
committerokan2013-10-20 01:55:32 +0000
commitbc9d9528c07819dda788fd775c9ef4fc510c23e6 (patch)
tree21eb4bc041b4bfdba7ac038d4645865faf3f8dbc /xutil.c
parent9f44dc960c07054d0b9cbb4fab6e3e7c70cb1423 (diff)
downloadcwm-bc9d9528c07819dda788fd775c9ef4fc510c23e6.tar.gz
wrap key ungrab like btn ungrab, for it'll be used again
Diffstat (limited to 'xutil.c')
-rw-r--r--xutil.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/xutil.c b/xutil.c
index 7d7b13b..7006d2b 100644
--- a/xutil.c
+++ b/xutil.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: xutil.c,v 1.76 2013/10/19 19:39:34 okan Exp $
+ * $OpenBSD: xutil.c,v 1.77 2013/10/20 01:55:32 okan Exp $
*/
#include <sys/param.h>
@@ -102,6 +102,12 @@ xu_key_grab(Window win, u_int mask, KeySym keysym)
True, GrabModeAsync, GrabModeAsync);
}
+void
+xu_key_ungrab(Window win)
+{
+ XUngrabKey(X_Dpy, AnyKey, AnyModifier, win);
+}
+
int
xu_getprop(Window win, Atom atm, Atom type, long len, unsigned char **p)
{