IDEA-87930: "Edit library" action is not dumb aware

This commit is contained in:
nik
2012-07-31 14:02:53 +04:00
parent 305455d04d
commit e869b0f70c
@@ -184,6 +184,11 @@ public class ClasspathPanelImpl extends JPanel implements ClasspathPanel {
public void actionPerformed(AnActionEvent e) {
doEdit();
}
@Override
public boolean isDumbAware() {
return true;
}
};
add(createTableWithButtons(), BorderLayout.CENTER);