Remove repeat properties

This commit is contained in:
Shin'ya Ueoka 2019-02-11 20:06:31 +09:00
parent 7bdecfdb34
commit 4f342102c0
3 changed files with 5 additions and 6 deletions

View file

@ -49,7 +49,7 @@ export default class KeymapperComponent {
}
let operation = keymaps.get(matched[0]);
let act = operationActions.exec(
operation, key.repeat, state.setting, state.addon.enabled
operation, state.setting, state.addon.enabled
);
this.store.dispatch(act);
this.store.dispatch(inputActions.clearKeys());