We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
readOnly
1 parent 91fcbe0 commit f818005Copy full SHA for f818005
meshroom/ui/qml/GraphEditor/Node.qml
@@ -446,7 +446,7 @@ Item {
446
property real globalX: root.x + nodeAttributes.x + inputs.x + inputLoader.x + inPin.x
447
property real globalY: root.y + nodeAttributes.y + inputs.y + inputLoader.y + inPin.y
448
449
- readOnly: root.readOnly || object.isReadOnly
+ readOnly: Boolean(root.readOnly || object.isReadOnly)
450
Component.onCompleted: attributePinCreated(attribute, inPin)
451
Component.onDestruction: attributePinDeleted(attribute, inPin)
452
onPressed: function(mouse) { root.pressed(mouse) }
0 commit comments