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");