From 82ad081a481356d705fdb0316b7d1e2fbaced19f Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Sun, 4 Jun 2023 22:01:14 +0100 Subject: [PATCH] Fix hiding assets in archive --- applications/main/archive/helpers/archive_browser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/main/archive/helpers/archive_browser.c b/applications/main/archive/helpers/archive_browser.c index 43ab8c950..aaef1c9e5 100644 --- a/applications/main/archive/helpers/archive_browser.c +++ b/applications/main/archive/helpers/archive_browser.c @@ -498,7 +498,7 @@ void archive_switch_tab(ArchiveBrowserView* browser, InputKey key) { tab = archive_get_tab(browser); if(archive_is_dir_exists(browser->path)) { bool is_browser = !strcmp(archive_get_tab_ext(tab), "*"); - bool skip_assets = is_browser; + bool skip_assets = !is_browser; // Hide dot files everywhere except Browser if in debug mode bool hide_dot_files = !is_browser ? true : tab == ArchiveTabInternal ?