fix(web): better method name pt 2

This commit is contained in:
Joshua A. Horton 2023-10-18 14:34:22 +07:00
parent 2fa51fce29
commit c2dd4f0828

View file

@ -65,7 +65,7 @@ export default class Multitap implements GestureHandler {
const keyEvent = vkbd.keyEventFromSpec(selection);
keyEvent.baseTranscriptionToken = this.baseContextToken;
keyEvent.keyDistribution = this.currentStageKeyDistances();
keyEvent.keyDistribution = this.currentStageKeyDistribution();
const keyResult = vkbd.raiseKeyEvent(keyEvent, null);
// TODO: store the context token, possibly other stuff?
@ -81,7 +81,7 @@ export default class Multitap implements GestureHandler {
*/
}
currentStageKeyDistances(): KeyDistribution {
currentStageKeyDistribution(): KeyDistribution {
// TODO: multitap corrections
return [];
}