More proper "show tree handle" fix for the project view. Let's assume only directory and package node show their handle by default until open even if they in fact don't have any child nodes.

This commit is contained in:
Maxim Shafirov
2009-10-23 14:41:28 +04:00
parent aef4ce013c
commit e6d7a39016
3 changed files with 11 additions and 1 deletions
@@ -211,4 +211,9 @@ public class PackageElementNode extends ProjectViewNode<PackageElement> {
public int getTypeSortWeight(final boolean sortByType) {
return 4;
}
@Override
public boolean isAlwaysShowPlus() {
return true;
}
}