[view] Don't double-slant

This commit is contained in:
Behdad Esfahbod 2022-12-25 19:17:18 -07:00
parent 70babda6ad
commit ea993af8e7
1 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,8 @@ helper_cairo_create_scaled_font (const font_options_t *font_opts)
cairo_matrix_init_scale (&font_matrix,
font_opts->font_size_x,
font_opts->font_size_y);
font_matrix.xy = -font_opts->slant * font_opts->font_size_x;
if (!use_hb_draw)
font_matrix.xy = -font_opts->slant * font_opts->font_size_x;
font_options = cairo_font_options_create ();
cairo_font_options_set_hint_style (font_options, CAIRO_HINT_STYLE_NONE);