From 91d73c939c511a09563785d19cd96fe6c0cd7899 Mon Sep 17 00:00:00 2001 From: bean <62624884+alpsfordays@users.noreply.github.com> Date: Mon, 26 Jan 2026 15:09:53 -0500 Subject: [PATCH] Correction of /fonts hiding code /fonts should be properly hidden now, instead of being the only folder shown in the file browser --- src/activities/home/MyLibraryActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/home/MyLibraryActivity.cpp b/src/activities/home/MyLibraryActivity.cpp index 1440a73e..89c0a406 100644 --- a/src/activities/home/MyLibraryActivity.cpp +++ b/src/activities/home/MyLibraryActivity.cpp @@ -110,7 +110,7 @@ void MyLibraryActivity::loadFiles() { char name[500]; for (auto file = root.openNextFile(); file; file = root.openNextFile()) { file.getName(name, sizeof(name)); - if (name[0] == '.' || strcmp(name, "System Volume Information") == 0 || strcmp(name, "fonts")) { + if (name[0] == '.' || strcmp(name, "System Volume Information") == 0 || strcmp(name, "fonts") == 0) { file.close(); continue; }