diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-14 12:27:28 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-14 12:27:28 +0000 |
commit | e664fb1242d0c30cc4b7ada4a43fb7fa6c71eeb5 (patch) | |
tree | edfec09c76882f7c224a4ae0f752552d3fab5764 /html.c | |
parent | b5dc2a38cb6196ba190ee2a75bc4d0cb0e0856ea (diff) | |
download | mandoc-e664fb1242d0c30cc4b7ada4a43fb7fa6c71eeb5.tar.gz |
Tweak previous: tb@ noticed that some browser/font combinations
have so amazingly wide bold fonts (for the same nominal font size)
that adding 15% to the column width still isn't sufficient to make
text reliably fit, so go for 20%.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -615,7 +615,7 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...) a2width(arg2, su); if (*fmt == '+') { /* Increase to make even bold text fit. */ - su->scale *= 1.15; + su->scale *= 1.2; /* Add padding. */ su->scale += 3.0; fmt++; |