Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cleanup: Remove some pieces that are redundant in this context.
Different enough to warrant not extracting a common function yet.
  • Loading branch information
DrJKL committed Aug 20, 2025
commit e292625e8b22646cafc52a2e31d5a208d474e5fc
7 changes: 2 additions & 5 deletions src/lib/litegraph/src/canvas/LinkConnector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export class LinkConnector {
console.warn(
'Subgraph output link found in non-subgraph network.'
)
return
continue
}

const output = network.outputs.at(link.target_slot)
Expand All @@ -331,11 +331,8 @@ export class LinkConnector {
output
)
renderLink.fromDirection = LinkDirection.NONE
this.renderLinks.push(renderLink)
renderLinks.push(renderLink)

this.state.connectingTo = 'output'

this.#setLegacyLinks(false)
continue
}
const renderLink = new MovingOutputLink(
Expand Down