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())
|
if (!file.isDirectory())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (file.isHidden() && !showHidden)
|
if (!showHidden && file.isHidden())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
final String curPath = file.getAbsolutePath();
|
final String curPath = file.getAbsolutePath();
|
||||||
|
Reference in New Issue
Block a user