mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
do not attempt to calculate icon for uninitialized projects
This commit is contained in:
@@ -63,7 +63,7 @@ public class RunConfigurationAction extends ComboBoxAction implements DumbAware
|
||||
}
|
||||
|
||||
try {
|
||||
if (project == null || project.isDisposed()) {
|
||||
if (project == null || project.isDisposed() || !project.isInitialized()) {
|
||||
//if (ProjectManager.getInstance().getOpenProjects().length > 0) {
|
||||
// // do nothing if frame is not active
|
||||
// return;
|
||||
|
||||
Reference in New Issue
Block a user