eventbox: also draw css borders if specified

https://bugzilla.gnome.org/show_bug.cgi?id=711324
This commit is contained in:
Paolo Borelli 2013-11-02 12:18:25 +01:00
parent 144a92ef11
commit e077660e1e

View File

@ -622,6 +622,9 @@ gtk_event_box_draw (GtkWidget *widget,
gtk_render_background (context, cr, 0, 0,
gtk_widget_get_allocated_width (widget),
gtk_widget_get_allocated_height (widget));
gtk_render_frame (context, cr, 0, 0,
gtk_widget_get_allocated_width (widget),
gtk_widget_get_allocated_height (widget));
}
GTK_WIDGET_CLASS (gtk_event_box_parent_class)->draw (widget, cr);