Consider Meta Key as a modifier
In a previous commit, number seek navigation was disabled when the ALT and CTRL modifiers were active. Macs allow tab switching with the COMMAND key and a number. This commit excludes meta key modifiers (COMMAND and WINDOWS) key.
This commit is contained in:
@@ -1134,7 +1134,7 @@ import 'css!assets/css/videoosd';
|
||||
clickedElement = e.target;
|
||||
|
||||
const key = keyboardnavigation.getKeyName(e);
|
||||
const isKeyModified = e.ctrlKey || e.altKey;
|
||||
const isKeyModified = e.ctrlKey || e.altKey || e.metaKey;
|
||||
|
||||
if (!currentVisibleMenu && 32 === e.keyCode) {
|
||||
playbackManager.playPause(currentPlayer);
|
||||
|
||||
Reference in New Issue
Block a user