[FL-3017], [FL-3018] Change NFC emulation screens (#2102)

* nfc: fix emulate uid view
* archive: hide dot files in apps
* nfc: fix other emulation scenes view
This commit is contained in:
gornekich
2022-12-07 20:47:55 +04:00
committed by GitHub
parent 2daf39018b
commit c535b8f4ce
6 changed files with 22 additions and 13 deletions

View File

@@ -475,8 +475,10 @@ void archive_switch_tab(ArchiveBrowserView* browser, InputKey key) {
tab = archive_get_tab(browser);
if(archive_is_dir_exists(browser->path)) {
bool skip_assets = (strcmp(archive_get_tab_ext(tab), "*") == 0) ? false : true;
// Hide dot files everywhere except Browser
bool hide_dot_files = (strcmp(archive_get_tab_ext(tab), "*") == 0) ? false : true;
archive_file_browser_set_path(
browser, browser->path, archive_get_tab_ext(tab), skip_assets, false);
browser, browser->path, archive_get_tab_ext(tab), skip_assets, hide_dot_files);
tab_empty = false; // Empty check will be performed later
}
}