Do not set "entry" class in spinbutton buttons.

Also, fix an unpaired gtk_style_context_save() call.
This commit is contained in:
Carlos Garnacho 2010-12-24 19:21:39 +01:00
parent 2bd221d215
commit 760d6d1e78

View File

@ -836,6 +836,7 @@ gtk_spin_button_draw (GtkWidget *widget,
gtk_style_context_save (context);
gtk_style_context_set_state (context, state);
gtk_style_context_remove_class (context, GTK_STYLE_CLASS_ENTRY);
if (is_rtl)
gtk_style_context_set_junction_sides (context, GTK_JUNCTION_RIGHT);
@ -852,6 +853,7 @@ gtk_spin_button_draw (GtkWidget *widget,
gtk_spin_button_draw_arrow (spin, context, cr, GTK_ARROW_UP);
gtk_spin_button_draw_arrow (spin, context, cr, GTK_ARROW_DOWN);
gtk_style_context_restore (context);
cairo_restore (cr);
return FALSE;