I have a List added to my applet with focus.
In handleEvent I process all key presses.
I perform action on the keys.
When the keys are arrow keys, the list is also jumping all over the place. This is undesirable. The list should only respond to mouse events not key events.
How can I override or remove the default key processing for the List component?
Assuming it is a component that supports KeyListener just add a
KeyListenerandconsume()it so it doesn’t reach component. Added some additional keys.