flip some check conditions
This commit is contained in:
parent
a904a76bd8
commit
35ce30804a
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ public class SelectFolderDialog extends DialogFragment {
|
|||
if (!file.isDirectory())
|
||||
continue;
|
||||
|
||||
if (file.isHidden() && !showHidden)
|
||||
if (!showHidden && file.isHidden())
|
||||
continue;
|
||||
|
||||
final String curPath = file.getAbsolutePath();
|
||||
|
|
Loading…
Reference in a new issue