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 <kraxel@redhat.com>
This commit is contained in:
Gerd Hoffmann 2014-05-06 11:04:57 +02:00
parent 4c638e2e4b
commit 746b867030
1 changed files with 3 additions and 1 deletions

View File

@ -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);