diff options
author | Owen Taylor <otaylor@redhat.com> | 2005-05-01 15:36:22 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2005-05-01 15:36:22 +0000 |
commit | 93fdbe64dcd1dab98cdd09545a43ac9329f11534 (patch) | |
tree | 55210f0ce76f3378ff789965faf1297f5560d7ed /examples | |
parent | 3fc02e41c1efd23af4eb0e34af0fd6fa2783ead6 (diff) | |
download | pango-93fdbe64dcd1dab98cdd09545a43ac9329f11534.tar.gz |
Fix for the change of cairo_clip() not to preserve the path.
2005-05-01 Owen Taylor <otaylor@redhat.com>
* examples/cairoview.c: Fix for the change of cairo_clip() not to preserve
the path.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cairoview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cairoview.c b/examples/cairoview.c index a805595b..96c39886 100644 --- a/examples/cairoview.c +++ b/examples/cairoview.c @@ -165,7 +165,7 @@ update () cairo_clip (cr); cairo_set_rgb_color (cr, 1.0, 1.0, 1.0); - cairo_fill (cr); + cairo_paint (cr); /* Draw the text in black */ cairo_set_rgb_color (cr, 0.0, 0.0, 0.0); |