// If it's an "I" . . .
if (evt.getKeyCode() == KeyEvent.VK_I) {
// . . . and CTRL is pressed . . .
if ((evt.getModifiers() & ActionEvent.CTRL_MASK)==ActionEvent.CTRL_MASK) {
// . . . let it through by doing nothing . . .
return;
}
}
// Otherwise, let superclass do its thing . . .
super.processKeyEvent(focusedComp, evt);