We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4185c2e commit 2fde40fCopy full SHA for 2fde40f
app/src/processing/app/EditorListener.java
@@ -130,7 +130,7 @@ public boolean keyPressed(KeyEvent event) {
130
}
131
132
// The char is not control code when CTRL key pressed? It should be a shortcut.
133
- if (c >= ' ') {
+ if (!Character.isISOControl(c)) {
134
event.consume();
135
return true;
136
@@ -487,7 +487,7 @@ public boolean keyTyped(KeyEvent event) {
487
488
if ((event.getModifiers() & KeyEvent.CTRL_MASK) != 0) {
489
490
491
492
493
0 commit comments