summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-03-14 20:50:29 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-03-14 20:50:29 -0400
commit3310b979c486e38182d89132d6b6b3e3d7ffb728 (patch)
tree268bb53b1c2cda9493a0b893608e768129f46724
parent5ca1d5b3373e6a2c2c69829a9ffd2a515d64e860 (diff)
downloadpango-3310b979c486e38182d89132d6b6b3e3d7ffb728.tar.gz
[pango-view] Don't set metrics-hinting, fallback to surface default
-rw-r--r--pango-view/viewer-pangocairo.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pango-view/viewer-pangocairo.c b/pango-view/viewer-pangocairo.c
index 30259ec6..45c03df0 100644
--- a/pango-view/viewer-pangocairo.c
+++ b/pango-view/viewer-pangocairo.c
@@ -53,8 +53,6 @@ pangocairo_view_create (const PangoViewer *klass G_GNUC_UNUSED)
instance->font_options = cairo_font_options_create ();
if (opt_hinting != HINT_DEFAULT)
{
- cairo_font_options_set_hint_metrics (instance->font_options, CAIRO_HINT_METRICS_ON);
-
if (opt_hinting == HINT_NONE)
cairo_font_options_set_hint_style (instance->font_options, CAIRO_HINT_STYLE_NONE);
else if (opt_hinting == HINT_FULL)