mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix bug in action keys
This commit is contained in:
parent
3fbf2176df
commit
9dde4679e4
@ -1136,7 +1136,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (code > Constants.CODE_ACTION_0 && code < Constants.CODE_ACTION_MAX) {
|
if (code >= Constants.CODE_ACTION_0 && code <= Constants.CODE_ACTION_MAX) {
|
||||||
cancelKeyTracking();
|
cancelKeyTracking();
|
||||||
sListener.onCodeInput(
|
sListener.onCodeInput(
|
||||||
code - Constants.CODE_ACTION_0 + Constants.CODE_ALT_ACTION_0,
|
code - Constants.CODE_ACTION_0 + Constants.CODE_ALT_ACTION_0,
|
||||||
|
Loading…
Reference in New Issue
Block a user