From: Dana Jansens Date: Sun, 3 Jun 2007 16:59:24 +0000 (+0000) Subject: always ungrab the keyboard/mouse with current time because i dont know what else... X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=c61c7e73298ca435d8308dd3e09be4f04a665ca5;p=chaz%2Fopenbox always ungrab the keyboard/mouse with current time because i dont know what else we can do with buggy x.org --- diff --git a/openbox/grab.c b/openbox/grab.c index ac91a6bc..1fd2493f 100644 --- a/openbox/grab.c +++ b/openbox/grab.c @@ -84,7 +84,7 @@ gboolean grab_keyboard_full(gboolean grab) ret = TRUE; } else if (kgrabs > 0) { if (--kgrabs == 0) { - XUngrabKeyboard(ob_display, ungrab_time()); + XUngrabKeyboard(ob_display, CurrentTime); } ret = TRUE; } @@ -113,7 +113,7 @@ gboolean grab_pointer_full(gboolean grab, gboolean owner_events, ret = TRUE; } else if (pgrabs > 0) { if (--pgrabs == 0) { - XUngrabPointer(ob_display, ungrab_time()); + XUngrabPointer(ob_display, CurrentTime); } ret = TRUE; }