diff options
| author | Lars Ingebrigtsen | 2021-11-12 07:19:19 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-11-12 07:19:25 +0100 |
| commit | dae3c4e89b27fa008d029a30cf7bd02fc3fbb6e2 (patch) | |
| tree | 196e92159df48b8d76fd3bf9e862e2e0e0b0395f /src/ftfont.c | |
| parent | fc00fe53e189df04e6325e4f19edcb0c8612600f (diff) | |
| download | emacs-dae3c4e89b27fa008d029a30cf7bd02fc3fbb6e2.tar.gz emacs-dae3c4e89b27fa008d029a30cf7bd02fc3fbb6e2.zip | |
Allow choosing regular-weighted fonts when medium-weighted exist
* src/ftfont.c (ftfont_pattern_entity): Allow using both regular
and medium-weighted fonts.
Diffstat (limited to 'src/ftfont.c')
| -rw-r--r-- | src/ftfont.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ftfont.c b/src/ftfont.c index 12d0d72d276..03e44ec30ee 100644 --- a/src/ftfont.c +++ b/src/ftfont.c | |||
| @@ -225,8 +225,6 @@ ftfont_pattern_entity (FcPattern *p, Lisp_Object extra) | |||
| 225 | } | 225 | } |
| 226 | if (FcPatternGetInteger (p, FC_WEIGHT, 0, &numeric) == FcResultMatch) | 226 | if (FcPatternGetInteger (p, FC_WEIGHT, 0, &numeric) == FcResultMatch) |
| 227 | { | 227 | { |
| 228 | if (numeric >= FC_WEIGHT_REGULAR && numeric < FC_WEIGHT_MEDIUM) | ||
| 229 | numeric = FC_WEIGHT_MEDIUM; | ||
| 230 | FONT_SET_STYLE (entity, FONT_WEIGHT_INDEX, make_fixnum (numeric)); | 228 | FONT_SET_STYLE (entity, FONT_WEIGHT_INDEX, make_fixnum (numeric)); |
| 231 | } | 229 | } |
| 232 | if (FcPatternGetInteger (p, FC_SLANT, 0, &numeric) == FcResultMatch) | 230 | if (FcPatternGetInteger (p, FC_SLANT, 0, &numeric) == FcResultMatch) |