diff options
Diffstat (limited to 'Graphics.py')
-rw-r--r-- | Graphics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics.py b/Graphics.py index 3184019..99b4f46 100644 --- a/Graphics.py +++ b/Graphics.py @@ -217,7 +217,7 @@ class NodeSocket(QtWidgets.QGraphicsItem): self.newLine.pointB = item.getCenter() if self.newLine.source.parent.obj.type not in stm: self.newLine.source.parent.obj.add_connection(0,self.newLine.target.parent.obj) - if self.newLine.target.parent.obj not in stm: + if self.newLine.target.parent.obj.type not in stm: self.newLine.target.parent.obj.add_connection(1,self.newLine.source.parent.obj) elif (self.type =='in') and (item.type == 'op'): self.newLine.source = item @@ -226,7 +226,7 @@ class NodeSocket(QtWidgets.QGraphicsItem): self.newLine.pointA = item.getCenter() if self.newLine.source.parent.obj.type not in stm: self.newLine.source.parent.obj.add_connection(0,self.newLine.target.parent.obj) - if self.newLine.target.parent.obj not in stm: + if self.newLine.target.parent.obj.type not in stm: self.newLine.target.parent.obj.add_connection(1,self.newLine.source.parent.obj) else: self.scene().removeItem(self.newLine) |