Skip to content

Commit

Permalink
#99
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Nov 10, 2020
1 parent 6ffe321 commit 0536b75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eez/modules/psu/gui/file_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static ListViewOption g_rootDirectoryListViewOption = LIST_VIEW_LARGE_ICONS;
static ListViewOption g_scriptsDirectoryListViewOption = LIST_VIEW_SCRIPTS;

void catalogCallback(void *param, const char *name, FileType type, size_t size, bool isHiddenOrSystemFile) {
if (isHiddenOrSystemFile || (g_fileBrowserMode && type != FILE_TYPE_DIRECTORY && type != g_fileBrowserFileType)) {
if (isHiddenOrSystemFile || name[0] = '.' || (g_fileBrowserMode && type != FILE_TYPE_DIRECTORY && type != g_fileBrowserFileType)) {
return;
}

Expand Down

0 comments on commit 0536b75

Please sign in to comment.