]> Dogcows Code - chaz/openbox/commitdiff
if a dock app has a button grabbed already then dont die
authorDana Jansens <danakj@orodu.net>
Fri, 1 Aug 2003 19:34:52 +0000 (19:34 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 1 Aug 2003 19:34:52 +0000 (19:34 +0000)
openbox/grab.c

index 2d8877841fd1145de68b7eb59fbceb21291f460a..67c15becd7935a3052c4ab99e1357374ed5f704c 100644 (file)
@@ -120,9 +120,14 @@ void grab_button_full(guint button, guint state, Window win, guint mask,
 {
     guint i;
 
+    xerror_set_ignore(TRUE); /* can get BadAccess' from these */
+    xerror_occured = FALSE;
     for (i = 0; i < MASK_LIST_SIZE; ++i)
         XGrabButton(ob_display, button, state | mask_list[i], win, FALSE, mask,
                     pointer_mode, GrabModeSync, None, ob_cursor(cur));
+    xerror_set_ignore(FALSE);
+    if (xerror_occured)
+        g_warning("failed to grab keycode %d modifiers %d", keycode, state);
 }
 
 void grab_button(guint button, guint state, Window win, guint mask)
This page took 0.024291 seconds and 4 git commands to generate.