mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix hide ignored files even if hidden files are shown [content entries tree]
This commit is contained in:
+1
-1
@@ -141,7 +141,7 @@ public class FileChooserDescriptor implements Cloneable{
|
||||
}
|
||||
|
||||
// do not include ignored files
|
||||
if (isHideIgnored() && !showHiddenFiles && FileTypeManager.getInstance().isFileIgnored(file.getName())) {
|
||||
if (isHideIgnored() && FileTypeManager.getInstance().isFileIgnored(file.getName())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user