From 992e4d27c8e66c8f8cf9df5f143759654967cbab Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 15 Mar 2013 06:32:36 -0400 Subject: [test] Fix scale --- tests/test-pangocairo-threads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-pangocairo-threads.c b/tests/test-pangocairo-threads.c index 72349545..f5a8b020 100644 --- a/tests/test-pangocairo-threads.c +++ b/tests/test-pangocairo-threads.c @@ -35,7 +35,7 @@ draw (cairo_t *cr, PangoLayout *layout, unsigned int i) cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE); cairo_identity_matrix (cr); - cairo_scale (cr, (100 + i) / 10., (100 + i) / 10.); + cairo_scale (cr, (100 + i) / 100., (100 + i) / 100.); pango_cairo_update_layout (cr, layout); pango_cairo_show_layout (cr, layout); -- cgit v1.2.1