mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-29 10:42:44 +00:00
midi slot fix (rename to i)
This commit is contained in:
@@ -1814,7 +1814,7 @@ LGraphNode.prototype.trigger = function( action, param )
|
|||||||
|
|
||||||
for(var i = 0; i < this.outputs.length; ++i)
|
for(var i = 0; i < this.outputs.length; ++i)
|
||||||
{
|
{
|
||||||
var output = this.outputs[ slot ];
|
var output = this.outputs[ i ];
|
||||||
if(!output || output.type !== LiteGraph.EVENT || (action && output.name != action) )
|
if(!output || output.type !== LiteGraph.EVENT || (action && output.name != action) )
|
||||||
continue;
|
continue;
|
||||||
this.triggerSlot( i, param );
|
this.triggerSlot( i, param );
|
||||||
|
|||||||
Reference in New Issue
Block a user