summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-12-27 14:39:32 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-12-27 14:39:32 +0200
commita0111b0560c96fcc25758d2384f6ee53171ccd69 (patch)
treec3df88900b33f73d8872ae40cb8b0754bbb3fd32
parent666033098e74e044beb6d8b9e032e79b62d48c57 (diff)
Android: Don't suggest to download fonts
-rw-r--r--src/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.c b/src/app.c
index 27c8bef7..b04b6388 100644
--- a/src/app.c
+++ b/src/app.c
@@ -420,7 +420,7 @@ static void loadPrefs_App_(iApp *d) {
420 iRelease(f); 420 iRelease(f);
421 /* Upgrade checks. */ 421 /* Upgrade checks. */
422 if (cmp_Version(&upgradedFromAppVersion, &(iVersion){ 1, 8, 0 }) < 0) { 422 if (cmp_Version(&upgradedFromAppVersion, &(iVersion){ 1, 8, 0 }) < 0) {
423#if !defined (iPlatformAppleMobile) 423#if !defined (iPlatformAppleMobile) && !defined (iPlatformAndroidMobile)
424 /* When upgrading to v1.8.0, the old hardcoded font library is gone and that means 424 /* When upgrading to v1.8.0, the old hardcoded font library is gone and that means
425 UI strings may not have the right fonts available for the UI to remain 425 UI strings may not have the right fonts available for the UI to remain
426 usable. */ 426 usable. */