call processHotkeys debounced

This commit is contained in:
LenAnderson 2024-03-25 18:16:18 -04:00
parent 7c0cf50d80
commit 92ec45af4b
1 changed files with 2 additions and 1 deletions

View File

@ -884,8 +884,9 @@ export function initRossMods() {
}
$(document).on('keydown', function (event) {
processHotkeys(event.originalEvent);
processHotkeysDebounced(event.originalEvent);
});
const processHotkeysDebounced = debounce(processHotkeys);
//Additional hotkeys CTRL+ENTER and CTRL+UPARROW
/**