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-Tag: openbox-3_0-rc1-RELEASE~1161 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=506122a110035f810c7d25225661973845a59c62;p=dana%2Fopenbox.git 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);