diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-03-14 20:50:29 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-03-14 20:50:29 -0400 |
commit | 3310b979c486e38182d89132d6b6b3e3d7ffb728 (patch) | |
tree | 268bb53b1c2cda9493a0b893608e768129f46724 | |
parent | 5ca1d5b3373e6a2c2c69829a9ffd2a515d64e860 (diff) | |
download | pango-3310b979c486e38182d89132d6b6b3e3d7ffb728.tar.gz |
[pango-view] Don't set metrics-hinting, fallback to surface default
-rw-r--r-- | pango-view/viewer-pangocairo.c | 2 |
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) |