diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-10-01 16:23:10 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-10-01 16:23:10 +0300 |
commit | 692db72f23b6157aad2d450ec47410115c1fb76f (patch) | |
tree | 5d30845b9fef710621ee30148ef81f256b884c46 /src/ui/text.c | |
parent | b0b66f8ddeaabed289e6609dc0a5c1f79dd176df (diff) |
Text: Added small size to symbol fonts
Diffstat (limited to 'src/ui/text.c')
-rw-r--r-- | src/ui/text.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/ui/text.c b/src/ui/text.c index de8f10a4..0d7559cb 100644 --- a/src/ui/text.c +++ b/src/ui/text.c | |||
@@ -381,16 +381,16 @@ static void initFonts_Text_(iText *d) { | |||
381 | /* Content sizes: smallmono, mono, 1.0, 1.2, 1.333, 1.666, 2.0 */ | 381 | /* Content sizes: smallmono, mono, 1.0, 1.2, 1.333, 1.666, 2.0 */ |
382 | } fontData[max_FontId] = { | 382 | } fontData[max_FontId] = { |
383 | /* UI fonts: normal weight */ | 383 | /* UI fonts: normal weight */ |
384 | { &fontSourceSans3Regular_Embedded, uiSize, 1.0f, uiNormal_FontSize }, | 384 | { &fontSourceSans3Regular_Embedded, uiSize, 1.0f, uiNormal_FontSize }, |
385 | { &fontSourceSans3Regular_Embedded, uiSize * 1.125f, 1.0f, uiMedium_FontSize }, | 385 | { &fontSourceSans3Regular_Embedded, uiSize * 1.125f, 1.0f, uiMedium_FontSize }, |
386 | { &fontSourceSans3Regular_Embedded, uiSize * 1.333f, 1.0f, uiBig_FontSize }, | 386 | { &fontSourceSans3Regular_Embedded, uiSize * 1.333f, 1.0f, uiBig_FontSize }, |
387 | { &fontSourceSans3Regular_Embedded, uiSize * 1.666f, 1.0f, uiLarge_FontSize }, | 387 | { &fontSourceSans3Regular_Embedded, uiSize * 1.666f, 1.0f, uiLarge_FontSize }, |
388 | { &fontSourceSans3Semibold_Embedded, uiSize * 0.8f, 1.0f, uiNormal_FontSize }, | 388 | { &fontSourceSans3Semibold_Embedded, uiSize * 0.800f, 1.0f, uiSmall_FontSize }, |
389 | /* UI fonts: bold weight */ | 389 | /* UI fonts: bold weight */ |
390 | { &fontSourceSans3Bold_Embedded, uiSize, 1.0f, uiNormal_FontSize }, | 390 | { &fontSourceSans3Bold_Embedded, uiSize, 1.0f, uiNormal_FontSize }, |
391 | { &fontSourceSans3Bold_Embedded, uiSize * 1.125f, 1.0f, uiMedium_FontSize }, | 391 | { &fontSourceSans3Bold_Embedded, uiSize * 1.125f, 1.0f, uiMedium_FontSize }, |
392 | { &fontSourceSans3Bold_Embedded, uiSize * 1.333f, 1.0f, uiBig_FontSize }, | 392 | { &fontSourceSans3Bold_Embedded, uiSize * 1.333f, 1.0f, uiBig_FontSize }, |
393 | { &fontSourceSans3Bold_Embedded, uiSize * 1.666f, 1.0f, uiLarge_FontSize }, | 393 | { &fontSourceSans3Bold_Embedded, uiSize * 1.666f, 1.0f, uiLarge_FontSize }, |
394 | /* content fonts */ | 394 | /* content fonts */ |
395 | { regularFont, textSize, scaling, contentRegular_FontSize }, | 395 | { regularFont, textSize, scaling, contentRegular_FontSize }, |
396 | { boldFont, textSize, scaling, contentRegular_FontSize }, | 396 | { boldFont, textSize, scaling, contentRegular_FontSize }, |
@@ -411,6 +411,7 @@ static void initFonts_Text_(iText *d) { | |||
411 | { (data), uiSize * 1.125f, glyphScale, uiMedium_FontSize }, \ | 411 | { (data), uiSize * 1.125f, glyphScale, uiMedium_FontSize }, \ |
412 | { (data), uiSize * 1.333f, glyphScale, uiBig_FontSize }, \ | 412 | { (data), uiSize * 1.333f, glyphScale, uiBig_FontSize }, \ |
413 | { (data), uiSize * 1.666f, glyphScale, uiLarge_FontSize }, \ | 413 | { (data), uiSize * 1.666f, glyphScale, uiLarge_FontSize }, \ |
414 | { (data), uiSize * 0.800f, glyphScale, uiSmall_FontSize }, \ | ||
414 | { (data), textSize, glyphScale, contentRegular_FontSize }, \ | 415 | { (data), textSize, glyphScale, contentRegular_FontSize }, \ |
415 | { (data), textSize * 1.200f, glyphScale, contentMedium_FontSize }, \ | 416 | { (data), textSize * 1.200f, glyphScale, contentMedium_FontSize }, \ |
416 | { (data), textSize * 1.333f, glyphScale, contentBig_FontSize }, \ | 417 | { (data), textSize * 1.333f, glyphScale, contentBig_FontSize }, \ |