List of usage examples for com.intellij.openapi.actionSystem ActionPlaces RUN_CONFIGURATIONS_COMBOBOX
String RUN_CONFIGURATIONS_COMBOBOX
To view the source code for com.intellij.openapi.actionSystem ActionPlaces RUN_CONFIGURATIONS_COMBOBOX.
Click Source Link
From source file:com.intellij.execution.actions.EditRunConfigurationsAction.java
License:Apache License
@RequiredDispatchThread @Override/*w w w . j a va2 s . c o m*/ public void update(final AnActionEvent e) { Presentation presentation = e.getPresentation(); presentation.setEnabled(true); if (ActionPlaces.RUN_CONFIGURATIONS_COMBOBOX.equals(e.getPlace())) { presentation.setText(ExecutionBundle.message("edit.configuration.action")); presentation.setDescription(presentation.getText()); } }