combined drawing into a single fill

svn path=/trunk/; revision=24036
This commit is contained in:
Sven Neumann 2007-11-01 19:05:21 +00:00
parent 2d01e5ba7f
commit 00e7711788
1 changed files with 3 additions and 3 deletions

View File

@ -237,12 +237,12 @@ gimp_cell_renderer_dashes_render (GtkCellRenderer *cell,
cairo_rectangle (cr,
cell_area->x + cell->xpad + x, y,
MIN (BLOCK_WIDTH, width - x), DASHES_HEIGHT);
gdk_cairo_set_source_color (cr, &widget->style->text[state]);
cairo_fill (cr);
}
}
gdk_cairo_set_source_color (cr, &widget->style->text[state]);
cairo_fill (cr);
cairo_destroy (cr);
}