mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-08 09:00:05 +00:00
don't screw up group because pinned feature
This commit is contained in:
@@ -5831,7 +5831,7 @@ LGraphNode.prototype.executeAction = function(action)
|
||||
}
|
||||
|
||||
//left button mouse / single finger
|
||||
if (e.which == 1 && !this.pointer_is_double && !node.flags.pinned)
|
||||
if (e.which == 1 && !this.pointer_is_double && (!node || !node.flags || !node.flags.pinned))
|
||||
{
|
||||
if (e.ctrlKey)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user