window: add a style class when we automatically create the titlebar

To distinguish it from custom titlebars added from applications.

https://bugzilla.gnome.org/show_bug.cgi?id=706592
This commit is contained in:
Cosimo Cecchi 2013-08-22 16:16:05 +01:00 committed by Matthias Clasen
parent fde3d5afe8
commit 6928aedb2c

View File

@ -5273,6 +5273,7 @@ create_titlebar (GtkWindow *window)
NULL); NULL);
context = gtk_widget_get_style_context (titlebar); context = gtk_widget_get_style_context (titlebar);
gtk_style_context_add_class (context, GTK_STYLE_CLASS_TITLEBAR); gtk_style_context_add_class (context, GTK_STYLE_CLASS_TITLEBAR);
gtk_style_context_add_class (context, "default-decoration");
title = g_markup_printf_escaped ("<b>%s</b>", title = g_markup_printf_escaped ("<b>%s</b>",
priv->title ? priv->title : get_default_title ()); priv->title ? priv->title : get_default_title ());