mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
flip some check conditions
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user