mirror of https://github.com/node-red/node-red.git
Support ctrl key to select configuration nodes
parent
6a75a084ad
commit
3d64c2f011
|
|
@ -218,7 +218,7 @@ RED.sidebar.config = (function() {
|
|||
nodeDiv.on('click',function(e) {
|
||||
e.stopPropagation();
|
||||
RED.view.select(false);
|
||||
if (e.metaKey) {
|
||||
if (e.metaKey || e.ctrlKey) {
|
||||
$(this).toggleClass("selected");
|
||||
} else {
|
||||
$(content).find(".red-ui-palette-node").removeClass("selected");
|
||||
|
|
|
|||
Loading…
Reference in New Issue