File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7109,21 +7109,21 @@ LGraphNode.prototype.executeAction = function(action)
71097109 var selected_nodes_array = [ ] ;
71107110 for ( var i in this . selected_nodes ) {
71117111 var node = this . selected_nodes [ i ] ;
7112- if ( node . clonable === false )
7113- continue ;
7112+ if ( node . clonable === false )
7113+ continue ;
71147114 node . _relative_id = index ;
71157115 selected_nodes_array . push ( node ) ;
71167116 index += 1 ;
71177117 }
71187118
71197119 for ( var i = 0 ; i < selected_nodes_array . length ; ++ i ) {
71207120 var node = selected_nodes_array [ i ] ;
7121- var cloned = node . clone ( ) ;
7122- if ( ! cloned )
7123- {
7124- console . warn ( "node type not found: " + node . type ) ;
7125- continue ;
7126- }
7121+ var cloned = node . clone ( ) ;
7122+ if ( ! cloned )
7123+ {
7124+ console . warn ( "node type not found: " + node . type ) ;
7125+ continue ;
7126+ }
71277127 clipboard_info . nodes . push ( cloned . serialize ( ) ) ;
71287128 if ( node . inputs && node . inputs . length ) {
71297129 for ( var j = 0 ; j < node . inputs . length ; ++ j ) {
You can’t perform that action at this time.
0 commit comments