mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-02-19 21:30:37 +01:00
flip some check conditions
This commit is contained in:
parent
a904a76bd8
commit
35ce30804a
@ -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…
x
Reference in New Issue
Block a user