summaryrefslogtreecommitdiff
path: root/desktop/textarea.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/textarea.c')
-rw-r--r--desktop/textarea.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/desktop/textarea.c b/desktop/textarea.c
index 5450dde64..2feef0e6c 100644
--- a/desktop/textarea.c
+++ b/desktop/textarea.c
@@ -178,9 +178,7 @@ struct text_area *textarea_create(int width, int height,
ret->fstyle = *style;
- ret->line_height = FIXTOINT(FDIVI((FMUL(FLTTOFIX(1.2),
- FMULI(nscss_screen_dpi,
- (style->size / FONT_SIZE_SCALE)))), 72));
+ ret->line_height = FIXTOINT(FDIV((FMUL(FLTTOFIX(1.2), FMUL(nscss_screen_dpi, INTTOFIX((style->size / FONT_SIZE_SCALE))))), F_72));
ret->caret_pos.line = ret->caret_pos.char_off = 0;
ret->caret_x = MARGIN_LEFT;