List of usage examples for com.intellij.openapi.ui.popup.util PopupUtil handleEscKeyEvent
public static boolean handleEscKeyEvent()
From source file:com.chrisrm.idea.wizard.MTWizardDialog.java
License:Open Source License
@NotNull @Override// w ww . j a va 2 s . co m protected ActionListener createCancelAction() { return e -> { if (!PopupUtil.handleEscKeyEvent()) { doCancelAction(e); } }; }