Merge pull request #5486 from kazuhitoyokoi/master-fixselectconfig

Support ctrl key to select configuration nodes
pull/5500/head
Nick O'Leary 2026-02-23 16:19:18 +00:00 committed by GitHub
commit 14c8b779da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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");