diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2011-01-03 13:09:00 +0100 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2011-01-03 13:09:00 +0100 |
commit | 3fff4bd0915deeb5b009557113eb98d72b0fe1cd (patch) | |
tree | b4f7b2f4185b26c26fc98bf848d86197859764cd /gtk/gtkradiobutton.c | |
parent | 83f5e4868c7322ddcbb831dd72744da887e8d17f (diff) | |
download | gtk+-3fff4bd0915deeb5b009557113eb98d72b0fe1cd.tar.gz |
GtkRadioButton: Use "radio" style class instead of "check"
Diffstat (limited to 'gtk/gtkradiobutton.c')
-rw-r--r-- | gtk/gtkradiobutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c index 424d8505f4..4044b3ed1d 100644 --- a/gtk/gtkradiobutton.c +++ b/gtk/gtkradiobutton.c @@ -952,7 +952,7 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button, allocation.width - (2 * border_width), allocation.height - (2 * border_width)); - gtk_style_context_add_class (context, GTK_STYLE_CLASS_CHECK); + gtk_style_context_add_class (context, GTK_STYLE_CLASS_RADIO); gtk_render_option (context, cr, x, y, indicator_size, indicator_size); |