1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Fixed regression: CTRL+Left/CTRL+Right moves cursor one word backward/forward

See 4212be6669
This commit is contained in:
Cristian Maglie
2013-05-12 15:50:04 +02:00
parent a46259a0cf
commit 76fd163a5f

View File

@ -131,8 +131,7 @@ public class EditorListener {
// The char is not control code when CTRL key pressed? It should be a shortcut.
if (!Character.isISOControl(c)) {
event.consume();
return true;
return false;
}
}