IDEA-148928 Form classes group is not highlighted in Project View

This commit is contained in:
Alexander Lobas
2016-02-24 22:59:16 +03:00
parent 63a00963f7
commit e9b71e842b
@@ -76,6 +76,16 @@ public class FormNode extends ProjectViewNode<Form>{
}
}
@Override
protected boolean shouldPostprocess() {
return true;
}
@Override
public boolean someChildContainsFile(VirtualFile file) {
return contains(file);
}
public void navigate(final boolean requestFocus) {
getValue().navigate(requestFocus);
}