From: Gerd Hoffmann Date: Tue, 6 May 2014 09:04:57 +0000 (+0200) Subject: gtk: skip keyboard grab when hover autograb is active X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=746b86703003b4a6e5323b51b324f591dcd1a84b;p=qemu.git gtk: skip keyboard grab when hover autograb is active It's pointless. With grab on hover enabled the keyboard grab is already active when you press Ctrl-Alt-G ;) Signed-off-by: Gerd Hoffmann --- diff --git a/ui/gtk.c b/ui/gtk.c index d87bd1bfeb..f8048138fe 100644 --- a/ui/gtk.c +++ b/ui/gtk.c @@ -1183,7 +1183,9 @@ static void gd_menu_grab_input(GtkMenuItem *item, void *opaque) VirtualConsole *vc = gd_vc_find_current(s); if (gd_is_grab_active(s)) { - gd_grab_keyboard(vc); + if (!gd_grab_on_hover(s)) { + gd_grab_keyboard(vc); + } gd_grab_pointer(vc); } else { gd_ungrab_keyboard(s);