From 99879d4a5f56fec155a90b3bbb7d613da191508e Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Tue, 9 Nov 2010 18:27:13 +0100 Subject: [PATCH] GtkStyle: translate a few more detail strings. --- gtk/gtkstyle.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c index 9acc49c82b..3eca2014e9 100644 --- a/gtk/gtkstyle.c +++ b/gtk/gtkstyle.c @@ -1792,6 +1792,14 @@ transform_detail_string (const gchar *detail, gtk_style_context_add_class (context, "menubar"); else if (strcmp (detail, "base") == 0) gtk_style_context_add_class (context, "background"); + else if (strcmp (detail, "bar") == 0) + gtk_style_context_add_class (context, "progressbar"); + else if (strcmp (detail, "toolbar") == 0) + gtk_style_context_add_class (context, "toolbar"); + else if (strcmp (detail, "handlebox_bin") == 0) + gtk_style_context_add_class (context, "dock"); + else if (strcmp (detail, "notebook") == 0) + gtk_style_context_add_class (context, "notebook"); else if (g_str_has_prefix (detail, "cell")) { GtkRegionFlags row, col;