Index: NbFocusManager.java =================================================================== RCS file: /cvs/core/src/org/netbeans/core/windows/frames/NbFocusManager.java,v retrieving revision 1.20.2.2 diff -u -r1.20.2.2 NbFocusManager.java --- NbFocusManager.java 8 Jan 2002 17:33:45 -0000 1.20.2.2 +++ NbFocusManager.java 15 Jan 2002 10:41:23 -0000 @@ -189,7 +189,7 @@ static boolean processKeyStroke(KeyStroke key, ActionEvent ev) { Keymap root = TopManager.getDefault().getGlobalKeymap (); Action a = root.getAction (key); - if (a != null) { + if (a != null && a.isEnabled()) { TopManager.getDefault().getActionManager().invokeAction(a, ev); return true; } else {