fix(web): use fat-finger data with simple keypresses

This commit is contained in:
Joshua A. Horton 2024-06-24 08:55:09 +07:00
parent 7f55d74ee6
commit 4c35a93bbc

View file

@ -628,7 +628,7 @@ export default class VisualKeyboard extends EventEmitter<EventMap> implements Ke
try {
shouldLockLayer && this.lockLayer(true);
// Once the best coord to use for fat-finger calculations has been determined:
keyResult = this.modelKeyClick(gestureStage.item, coord);
keyResult = this.modelKeyClick(gestureStage.item, coord, correctionKeyDistribution);
} finally {
shouldLockLayer && this.lockLayer(false);
}