Improve rendering of plain text.

This commit is contained in:
Marco Cawthorne 2022-10-19 17:12:01 -07:00
parent e9fcd891cf
commit e13886782a
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ typedef struct textplain_content {
#define MARGIN 4
#define TAB_WIDTH 8 /* must be power of 2 currently */
#define TEXT_SIZE 10 * PLOT_STYLE_SCALE /* Unscaled text size in pt */
#define TEXT_SIZE 12 * PLOT_STYLE_SCALE /* Unscaled text size in pt */
static plot_font_style_t textplain_style = {
.family = PLOT_FONT_FAMILY_MONOSPACE,
@ -142,7 +142,7 @@ textplain_create_internal(textplain_content *c, lwc_string *encoding)
parserutils_inputstream *stream;
parserutils_error error;
textplain_style.size = (nsoption_int(font_size) * PLOT_STYLE_SCALE) / 10;
textplain_style.size = (nsoption_int(font_size) * PLOT_STYLE_SCALE) / 12;
utf8_data = malloc(CHUNK);
if (utf8_data == NULL)
@ -392,7 +392,7 @@ static float textplain_line_height(void)
/* Size is in points, so convert to pixels.
* Then use a constant line height of 1.2 x font size.
*/
return FIXTOFLT(FDIV((FMUL(FLTTOFIX(1.2), FMUL(nscss_screen_dpi, INTTOFIX((textplain_style.size / PLOT_STYLE_SCALE))))), F_72));
return FIXTOFLT(FDIV((FMUL(FLTTOFIX(1.2), FMUL(nscss_screen_dpi, INTTOFIX((textplain_style.size / PLOT_STYLE_SCALE))))), F_72)) + 8; /* 8 px padding */
}