From: Dana Jansens Date: Sun, 11 May 2003 17:49:12 +0000 (+0000) Subject: garb press events so they dont break bindings... X sucks X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=506122a110035f810c7d25225661973845a59c62;p=chaz%2Fopenbox garb press events so they dont break bindings... X sucks --- diff --git a/openbox/slit.c b/openbox/slit.c index a5d8be3b..3956e0ec 100644 --- a/openbox/slit.c +++ b/openbox/slit.c @@ -136,8 +136,9 @@ void slit_add(Window win, XWMHints *wmhints) XChangeSaveSet(ob_display, app->icon_win, SetModeInsert); XSelectInput(ob_display, app->icon_win, SLITAPP_EVENT_MASK); - grab_button_full(2, 0, app->icon_win, ButtonMotionMask, GrabModeAsync, - ob_cursors.move); + grab_button_full(2, 0, app->icon_win, + ButtonPressMask | ButtonReleaseMask | ButtonMotionMask, + GrabModeAsync, ob_cursors.move); g_hash_table_insert(slit_app_map, &app->icon_win, app);