Try harder to fix dialog titles

https://bugzilla.gnome.org/show_bug.cgi?id=733099
This commit is contained in:
Matthias Clasen 2014-07-15 21:29:59 -04:00
parent db189a892b
commit dc87027af9

View File

@ -458,9 +458,12 @@ gtk_dialog_constructed (GObject *object)
if (priv->use_header_bar)
{
GList *children, *l;
gchar *title;
title = g_strdup (gtk_window_get_title (GTK_WINDOW (dialog)));
gtk_window_set_titlebar (GTK_WINDOW (dialog), priv->headerbar);
gtk_window_set_title (GTK_WINDOW (dialog), gtk_window_get_title (GTK_WINDOW (dialog)));
gtk_window_set_title (GTK_WINDOW (dialog), title);
g_free (title);
children = gtk_container_get_children (GTK_CONTAINER (priv->action_area));
for (l = children; l != NULL; l = l->next)