forked from AuroraMiddleware/gtk
gtk: save/restore the cairo_t around early upchaining in draw()
and don't save/restore the style context because that's the job of each draw() implementation.
This commit is contained in:
parent
287a388415
commit
7fabfec533
@ -921,12 +921,10 @@ gtk_spin_button_draw (GtkWidget *widget,
|
|||||||
|
|
||||||
is_rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
|
is_rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
|
||||||
context = gtk_widget_get_style_context (widget);
|
context = gtk_widget_get_style_context (widget);
|
||||||
gtk_style_context_save (context);
|
|
||||||
|
|
||||||
GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->draw (widget, cr);
|
|
||||||
|
|
||||||
gtk_style_context_restore (context);
|
|
||||||
cairo_save (cr);
|
cairo_save (cr);
|
||||||
|
GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->draw (widget, cr);
|
||||||
|
cairo_restore (cr);
|
||||||
|
|
||||||
state = gtk_widget_get_state_flags (widget);
|
state = gtk_widget_get_state_flags (widget);
|
||||||
|
|
||||||
@ -953,7 +951,6 @@ gtk_spin_button_draw (GtkWidget *widget,
|
|||||||
gtk_spin_button_draw_arrow (spin, context, cr, GTK_ARROW_DOWN);
|
gtk_spin_button_draw_arrow (spin, context, cr, GTK_ARROW_DOWN);
|
||||||
|
|
||||||
gtk_style_context_restore (context);
|
gtk_style_context_restore (context);
|
||||||
cairo_restore (cr);
|
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user