mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-25 20:42:34 +01:00
show hidden directories in the file picker
This commit is contained in:
parent
85d1888ba7
commit
7f127ba52a
@ -115,6 +115,12 @@ public class FilePickerActivityHelper extends com.nononsenseapps.filepicker.File
|
||||
super.onClickOk(view);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isItemVisible(File file) {
|
||||
if (file.isDirectory() && file.isHidden()) return true;
|
||||
return super.isItemVisible(file);
|
||||
}
|
||||
|
||||
public File getBackTop() {
|
||||
if (getArguments() == null) return Environment.getExternalStorageDirectory();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user