From 69f91fed94b52fabc8e07dd1c8225af189474dd5 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 16 Nov 2010 21:50:04 -0500 Subject: [PATCH] Translate detail strings for radio buttons --- gtk/gtkstyle.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c index 67337924cd..8981613a67 100644 --- a/gtk/gtkstyle.c +++ b/gtk/gtkstyle.c @@ -1735,6 +1735,10 @@ transform_detail_string (const gchar *detail, gtk_style_context_add_class (context, "check"); gtk_style_context_add_class (context, "menu"); } + else if (strcmp (detail, "radiobutton") == 0) + { + gtk_style_context_add_class (context, "radio"); + } else if (strcmp (detail, "option") == 0) { gtk_style_context_add_class (context, "radio");