Merge branch 'wip/filechooser-non-default-display-gtk3' into 'gtk-3-22'

Fix filechooser dialog using non default display (gtk3)

See merge request GNOME/gtk!59
This commit is contained in:
Matthias Clasen 2018-03-15 17:47:15 +00:00
commit cac2845bd6

View File

@ -1648,8 +1648,6 @@ gtk_entry_completion_popup (GtkEntryCompletion *completion)
/* default on no match */
completion->priv->current_selected = -1;
_gtk_entry_completion_resize_popup (completion);
toplevel = gtk_widget_get_toplevel (completion->priv->entry);
if (GTK_IS_WINDOW (toplevel))
{
@ -1662,6 +1660,8 @@ gtk_entry_completion_popup (GtkEntryCompletion *completion)
gtk_window_set_screen (GTK_WINDOW (completion->priv->popup_window),
gtk_widget_get_screen (completion->priv->entry));
_gtk_entry_completion_resize_popup (completion);
if (completion->priv->device)
{
gtk_grab_add (completion->priv->popup_window);