Fix adding node to selection with ctrl click on mac (#189)

This commit is contained in:
bymyself
2024-10-02 07:41:41 -07:00
committed by GitHub
parent 596d6ecefa
commit 955dec36f2

View File

@@ -2552,7 +2552,7 @@ export class LGraphCanvas {
}
} else {
// will select of update selection
this.selectNodes([node], e.shiftKey || e.ctrlKey); // add to selection add to selection with ctrlKey or shiftKey
this.selectNodes([node], e.shiftKey || e.ctrlKey || e.metaKey); // add to selection add to selection with ctrlKey or shiftKey
}
}