summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2013-03-15 06:32:36 -0400
committerBehdad Esfahbod <behdad@behdad.org>2013-03-15 06:32:36 -0400
commit992e4d27c8e66c8f8cf9df5f143759654967cbab (patch)
treee79cb5087f0316e5f64754dd9b76033b71821979
parent0942b1962d2ee8574c0aff345eb871e2daccea1e (diff)
downloadpango-992e4d27c8e66c8f8cf9df5f143759654967cbab.tar.gz
[test] Fix scale
-rw-r--r--tests/test-pangocairo-threads.c2
1 files changed, 1 insertions, 1 deletions
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);