diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2013-03-15 06:32:36 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2013-03-15 06:32:36 -0400 |
commit | 992e4d27c8e66c8f8cf9df5f143759654967cbab (patch) | |
tree | e79cb5087f0316e5f64754dd9b76033b71821979 /tests/test-pangocairo-threads.c | |
parent | 0942b1962d2ee8574c0aff345eb871e2daccea1e (diff) | |
download | pango-992e4d27c8e66c8f8cf9df5f143759654967cbab.tar.gz |
[test] Fix scale
Diffstat (limited to 'tests/test-pangocairo-threads.c')
-rw-r--r-- | tests/test-pangocairo-threads.c | 2 |
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); |