diff --git a/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml b/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml index 5a6ecbed..62a6fed1 100644 --- a/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml +++ b/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml @@ -668,7 +668,7 @@ RowLayout { var obj = cpt.createObject(groupItem, { 'model': Qt.binding(function() { return attribute.value }), - 'readOnly': Qt.binding(function() { return root.readOnly }), + 'readOnly': Qt.binding(function() { return !root.editable }), 'labelWidth': 100, // Reduce label width for children (space gain) 'objectsHideable': Qt.binding(function() { return root.objectsHideable }), 'filterText': Qt.binding(function() { return root.filterText }),