Try to fix some focus issues with contact list reported by Emil Ivov.

cusax-fix
Yana Stamcheva 16 years ago
parent bc16ffd341
commit bad092320e

@ -55,7 +55,8 @@ public SearchField(MainFrame frame)
this.setDragEnabled(true);
this.addTextChangeListener(this);
InputMap imap = getInputMap(JComponent.WHEN_FOCUSED);
InputMap imap
= getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
imap.put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), "escape");
ActionMap amap = getActionMap();
amap.put("escape", new AbstractAction()

Loading…
Cancel
Save