diff options
author | pommicket <pommicket@gmail.com> | 2023-07-16 15:49:34 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-07-19 19:02:27 -0400 |
commit | c4095353c5fc3712890cb5b7e78520105a23753a (patch) | |
tree | d1e0cb0308c8422c81493e055771cf3b68d46f58 /ted.c | |
parent | 50692503702b9d419de99c97cff59a970627de01 (diff) |
variable width fonts seem to be working
Diffstat (limited to 'ted.c')
-rw-r--r-- | ted.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -294,9 +294,6 @@ static void ted_load_font(Ted *ted, const char *filename, Font **out) { if (ted_get_file(ted, filename, font_filename, sizeof font_filename)) { Font *font = text_font_load(font_filename, ted_active_settings(ted)->text_size); if (font) { - // we don't properly handle variable-width fonts - text_font_set_force_monospace(font, true); - if (*out) { text_font_free(*out); } |