diff options
Diffstat (limited to 'gtk/gtkcellrenderer.c')
-rw-r--r-- | gtk/gtkcellrenderer.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkcellrenderer.c b/gtk/gtkcellrenderer.c index 334ddcaaae..a76474ce42 100644 --- a/gtk/gtkcellrenderer.c +++ b/gtk/gtkcellrenderer.c @@ -756,13 +756,13 @@ gtk_cell_renderer_snapshot (GtkCellRenderer *cell, if (priv->cell_background_set && !selected) { - gtk_snapshot_append_color_node (snapshot, - &priv->cell_background, - &GRAPHENE_RECT_INIT ( - background_area->x, background_area->y, - background_area->width, background_area->height - ), - "CellBackground"); + gtk_snapshot_append_color (snapshot, + &priv->cell_background, + &GRAPHENE_RECT_INIT ( + background_area->x, background_area->y, + background_area->width, background_area->height + ), + "CellBackground"); } gtk_snapshot_push_clip (snapshot, |