You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: meshroom/ui/qml/GraphEditor/AttributePin.qml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,7 @@ RowLayout {
123
123
||drag.source.nodeItem===inputDragTarget.nodeItem// Connection between attributes of the same node
124
124
|| (drag.source.isList&&childrenRepeater.count) // Source/target are lists but target already has children
125
125
||drag.source.connectorType==="input"// Refuse to connect an "input pin" on another one (input attr can be connected to input attr, but not the graphical pin)
126
+
|| (drag.source.isGroup||inputDragTarget.isGroup) // Refuse connection between Groups, which is unsupported
0 commit comments