List of usage examples for javax.swing.plaf InputMapUIResource remove
public void remove(KeyStroke key)
From source file:com.haulmont.cuba.desktop.App.java
protected void initLookAndFeelDefaults() { InputMapUIResource inputMap = (InputMapUIResource) UIManager.getLookAndFeelDefaults() .get("FormattedTextField.focusInputMap"); inputMap.remove(KeyStroke.getKeyStroke("ESCAPE")); }