(final KeyEvent e)
| 84 | } |
| 85 | |
| 86 | @Override |
| 87 | public void keyReleased(final KeyEvent e) { |
| 88 | if(!NEXTLINE.is(e) && !PREVLINE.is(e)) { |
| 89 | if(modifier(e) || control(e)) return; |
| 90 | popupMenu(); |
| 91 | if(gui.gopts.get(GUIOptions.EXECRT) && !cmdMode()) main.execute(); |
| 92 | } |
| 93 | } |
| 94 | }); |
| 95 | } |
| 96 |