key accelerator displays as Ctrl-S?
I have a popup menu in a JText area. I've set the accelerator for the item to Ctrl S . But when it is displayed it displays as Ctrl-S (ctrl dash S) instead of Ctrl+S (ctrl plus S). Code snippet:
mSaveItem.setAccelerator(
KeyStroke.getKeyStroke(
KeyEvent.VK_S,
java.awt.event.InputEvent.CTRL_DOWN_MASK));
What am I doing wrong? Or is this part of the default L&F?
Thanks
Lori <*>

