gtk: don't grab input when entering fullscreen.
Kick off all grabbing logic from fullscreen mode. In the current state it seems to create more problems than it solves. Try running qemu/gtk fullscreen on one head of a multihead host for example ... There probably was a reason the grab-on-fullscreen logic was added in the first place. So please test and report any issues so we can try to find a sane way to handle it. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
1d73cd782f
commit
78aee08112
6
ui/gtk.c
6
ui/gtk.c
@ -1140,10 +1140,6 @@ static void gd_menu_full_screen(GtkMenuItem *item, void *opaque)
|
||||
gtk_widget_hide(s->menu_bar);
|
||||
if (vc->type == GD_VC_GFX) {
|
||||
gtk_widget_set_size_request(vc->gfx.drawing_area, -1, -1);
|
||||
if (qemu_console_is_graphic(vc->gfx.dcl.con)) {
|
||||
gtk_check_menu_item_set_active
|
||||
(GTK_CHECK_MENU_ITEM(s->grab_item), TRUE);
|
||||
}
|
||||
}
|
||||
gtk_window_fullscreen(GTK_WINDOW(s->window));
|
||||
s->full_screen = TRUE;
|
||||
@ -1156,8 +1152,6 @@ static void gd_menu_full_screen(GtkMenuItem *item, void *opaque)
|
||||
vc->gfx.scale_x = 1.0;
|
||||
vc->gfx.scale_y = 1.0;
|
||||
gd_update_windowsize(vc);
|
||||
gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(s->grab_item),
|
||||
FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user