build package nodes in background

This commit is contained in:
Maxim.Mossienko
2016-10-14 22:04:15 +02:00
parent bc868e2079
commit 33a22cef22
@@ -224,6 +224,11 @@ public final class PackageViewPane extends AbstractProjectViewPSIPane {
protected AbstractTreeNode createRoot(final Project project, ViewSettings settings) {
return new PackageViewProjectNode(project, settings);
}
@Override
public boolean isToBuildChildrenInBackground(Object element) {
return true;
}
};
}