We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dee12a commit 4f1e864Copy full SHA for 4f1e864
1 file changed
app/src/main/java/io/github/yawnoc/strokeinput/InputContainer.java
@@ -411,7 +411,11 @@ public void onDraw(final Canvas canvas) {
411
);
412
}
413
else {
414
- keyDisplayText = key.shiftAwareDisplayText(shiftMode);
+ keyDisplayText = (
415
+ key.valueText.equals("ENTER")
416
+ ? key.displayText
417
+ : key.shiftAwareDisplayText(shiftMode)
418
+ );
419
420
421
final float keyTextX = (
0 commit comments