We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21b29c9 commit 60b11e3Copy full SHA for 60b11e3
1 file changed
app/src/main/java/io/github/yawnoc/strokeinput/InputContainer.java
@@ -594,16 +594,17 @@ private void sendShiftMoveFromEvent(
594
final int y
595
)
596
{
597
- activeKey = key;
598
- removeAllExtendedPressHandlerMessages();
599
- sendAppropriateExtendedPressHandlerMessage(key);
600
- resetKeyRepeatIntervalMilliseconds();
+ sendShiftUpEvent(false);
601
+ activeKey = key;
602
activePointerId = pointerId;
603
activePointerX = x;
604
activePointerY = y;
605
606
- sendShiftUpEvent(true);
+ removeAllExtendedPressHandlerMessages();
+ sendAppropriateExtendedPressHandlerMessage(key);
+ resetKeyRepeatIntervalMilliseconds();
607
+ invalidate();
608
}
609
610
private void sendShiftUpEvent(boolean shouldRedrawKeyboard) {
0 commit comments