diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-10-19 11:10:53 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-10-19 11:10:53 +0300 |
commit | e43a0650bd8201f0fca4b5dad3b0618a7bc91351 (patch) | |
tree | 8d245fe86dd11d0c7527de1bbdaf997ecac39753 | |
parent | 2d29615b9e7ebce07b4d8b3745e3515b32c199c0 (diff) |
FontPack: More compact info text
-rw-r--r-- | src/fontpack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fontpack.c b/src/fontpack.c index b521147c..226392bc 100644 --- a/src/fontpack.c +++ b/src/fontpack.c | |||
@@ -655,10 +655,10 @@ iString *infoText_FontPack(const iFontPack *d) { | |||
655 | iConstForEach(PtrSet, j, uniqueFiles) { | 655 | iConstForEach(PtrSet, j, uniqueFiles) { |
656 | sizeInBytes += size_Block(&((const iFontFile *) *j.value)->sourceData); | 656 | sizeInBytes += size_Block(&((const iFontFile *) *j.value)->sourceData); |
657 | } | 657 | } |
658 | appendFormat_String(str, "%.1f ${mb} (%s)\n%s: %s\n", | 658 | appendFormat_String(str, "%.1f ${mb} (%s) \u2014 %s\n", |
659 | sizeInBytes / 1.0e6, | 659 | sizeInBytes / 1.0e6, |
660 | formatCStrs_Lang("num.files.n", size_PtrSet(uniqueFiles)), | 660 | formatCStrs_Lang("num.files.n", size_PtrSet(uniqueFiles)), |
661 | formatCStrs_Lang("num.fonts.n", size_StringList(names)), | 661 | // formatCStrs_Lang("num.fonts.n", size_StringList(names)), |
662 | cstrCollect_String(joinCStr_StringList(names, ", ")), | 662 | cstrCollect_String(joinCStr_StringList(names, ", ")), |
663 | d->version); | 663 | d->version); |
664 | if (isInstalled && installedVersion != d->version) { | 664 | if (isInstalled && installedVersion != d->version) { |