mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Avoid conflicts with native browser cmd-ctrl type shortcuts
Fixes #3190
This commit is contained in:
parent
f030694ef4
commit
60e0ed2af6
@ -243,7 +243,13 @@ RED.keyboard = (function() {
|
|||||||
|
|
||||||
function resolveKeyEvent(evt) {
|
function resolveKeyEvent(evt) {
|
||||||
var slot = partialState||handlers;
|
var slot = partialState||handlers;
|
||||||
if (evt.ctrlKey || evt.metaKey) {
|
// We cheat with MacOS CMD key and consider it the same as Ctrl.
|
||||||
|
// That means we don't have to have separate keymaps for different OS.
|
||||||
|
// It mostly works.
|
||||||
|
// One exception is shortcuts that include both Cmd and Ctrl. We don't
|
||||||
|
// support them - but we need to make sure we don't block browser-specific
|
||||||
|
// shortcuts (such as Cmd-Ctrl-F for fullscreen).
|
||||||
|
if ((evt.ctrlKey || evt.metaKey) && (evt.ctrlKey !== evt.metaKey)) {
|
||||||
slot = slot.ctrl;
|
slot = slot.ctrl;
|
||||||
}
|
}
|
||||||
if (slot && evt.shiftKey) {
|
if (slot && evt.shiftKey) {
|
||||||
|
Loading…
Reference in New Issue
Block a user