aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-05-09 20:47:46 -0400
committerJesse Luehrs <doy@tozt.net>2014-05-09 20:47:46 -0400
commit2bea02ee4cbd46d7a2ffbd541ac6f64e2873200a (patch)
treea72abcd8154d91f6e69903d60259d09126b69ba9
parentf4bc70b23874f4d017e367b78368cbd1678075c3 (diff)
downloadrunes-2bea02ee4cbd46d7a2ffbd541ac6f64e2873200a.tar.gz
runes-2bea02ee4cbd46d7a2ffbd541ac6f64e2873200a.zip
select all pointer events
we'll want this for when we implement xterm mouse tracking
-rw-r--r--src/window-xlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index 43578be..311ff98 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -232,7 +232,7 @@ void runes_window_backend_start_loop(RunesTerm *t)
* the only thing we care about exposure events for */
XSelectInput(
w->dpy, w->w,
- xim_mask|common_mask|ButtonPressMask|ButtonReleaseMask|ButtonMotionMask|PointerMotionHintMask|ExposureMask);
+ xim_mask|common_mask|ButtonPressMask|ButtonReleaseMask|PointerMotionMask|PointerMotionHintMask|ExposureMask);
XSetICFocus(w->ic);
data = malloc(sizeof(RunesXlibLoopData));