gtk-demo: Clean up toolpalette drawing code

Fix compile warning and use cairo_paint() instead of querying the widget
size and cairo_fill()ing it.
This commit is contained in:
Benjamin Otte
2010-09-27 20:49:06 +02:00
parent efefc4e794
commit 1b170a1a14

View File

@ -84,15 +84,10 @@ static gboolean
canvas_draw (GtkWidget *widget,
cairo_t *cr)
{
GtkAllocation allocation;
GList *iter;
gint width, height;
cairo_set_source_rgb (cr, 1, 1, 1);
width = gtk_widget_get_allocated_width (widget);
height = gtk_widget_get_allocated_height (widget);
cairo_rectangle (cr, 0, 0, width, height);
cairo_fill (cr);
cairo_paint (cr);
for (iter = canvas_items; iter; iter = iter->next)
canvas_item_draw (iter->data, cr, FALSE);