mirror of https://github.com/node-red/node-red.git
Merge pull request #5486 from kazuhitoyokoi/master-fixselectconfig
Support ctrl key to select configuration nodespull/5500/head
commit
14c8b779da
|
|
@ -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