Skip to content

Commit 76fd163

Browse files
committed
Fixed regression: CTRL+Left/CTRL+Right moves cursor one word backward/forward
See 4212be6
1 parent a46259a commit 76fd163

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/src/processing/app/EditorListener.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ public boolean keyPressed(KeyEvent event) {
131131

132132
// The char is not control code when CTRL key pressed? It should be a shortcut.
133133
if (!Character.isISOControl(c)) {
134-
event.consume();
135-
return true;
134+
return false;
136135
}
137136
}
138137

0 commit comments

Comments
 (0)