mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-09 09:30:06 +00:00
Fix adding node to selection with ctrl click on mac (#189)
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user