We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f125769 commit a231224Copy full SHA for a231224
src/main/java/sc/iview/ui/REPLEditor.java
@@ -89,7 +89,7 @@ protected void processKeyEvent(KeyEvent e) {
89
return;
90
}
91
92
- if(e.isControlDown() && e.getKeyCode() == KeyEvent.VK_ENTER && e.getID() == KeyEvent.KEY_RELEASED) {
+ if(!e.isShiftDown() && e.getKeyCode() == KeyEvent.VK_ENTER && e.getID() == KeyEvent.KEY_RELEASED) {
93
String text = getText();
94
if(text.length() == 0) {
95
e.consume();
0 commit comments