Fix links on pasted nodes

This commit is contained in:
barsdeveloper
2022-04-11 21:07:53 +02:00
parent 295e1d3120
commit 4b045b4c70
13 changed files with 334 additions and 235 deletions

View File

@@ -76,11 +76,11 @@ export default class PinEntity extends IEntity {
}
isInput() {
return !this.bHidden && this.Direction !== "EGPD_Output"
return !this.bHidden && this.Direction != "EGPD_Output"
}
isOutput() {
return !this.bHidden && this.Direction === "EGPD_Output"
return !this.bHidden && this.Direction == "EGPD_Output"
}
/**