mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
[294521] Local "hidden" files and folders are always shown
This commit is contained in:
parent
2a83846d2c
commit
b684f4a3e1
1 changed files with 1 additions and 2 deletions
|
@ -76,8 +76,7 @@ public class LocalHostFile implements IHostFile, IHostFilePermissionsContainer
|
|||
public boolean isHidden()
|
||||
{
|
||||
String name = getName();
|
||||
return name.charAt(0) == '.' || _file.isHidden();
|
||||
|
||||
return name.charAt(0) == '.' || (!_isRoot && _file.isHidden());
|
||||
}
|
||||
|
||||
public String getParentPath()
|
||||
|
|
Loading…
Add table
Reference in a new issue