Fix panning
This commit is contained in:
parent
b128f97a7c
commit
f806d154ee
@ -217,7 +217,7 @@ class ActionHandler {
|
||||
execAction(actions, event, videoData) {
|
||||
this.logger.log('info', 'keyboard', "%c[ActionHandler::execAction] Trying to find and execute action for event. Actions/event: ", "color: #ff0", actions, event);
|
||||
|
||||
const isLatin = this.isLatin(event.key);
|
||||
const isLatin = event.key ? this.isLatin(event.key) : true;
|
||||
|
||||
for (var action of actions) {
|
||||
if (this.isActionMatch(action.shortcut, event, isLatin)) {
|
||||
|
Loading…
Reference in New Issue
Block a user