We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbeebaa commit 991c1b5Copy full SHA for 991c1b5
Keyboard.java.patch
@@ -0,0 +1,11 @@
1
+256a257,266
2
+> }
3
+>
4
+> // Ensure that at least one full clock tick will elapse before propagate() dequeue()s the
5
+> // first character. This is a workaround for the -tty tty command-line switch losing the
6
+> // first character of some lines of input.
7
+> Object trigger = state.getAttributeValue(StdAttr.EDGE_TRIGGER);
8
+> if (trigger == StdAttr.TRIG_FALLING) {
9
+> keyboardData.setLastClock(Value.FALSE);
10
+> } else {
11
+> keyboardData.setLastClock(Value.TRUE);
0 commit comments