diff --git a/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml b/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml index 201c9d2c..b0567a42 100644 --- a/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml +++ b/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml @@ -193,8 +193,8 @@ RowLayout { Layout.fillWidth: true sourceComponent: { - if (attribute.value === undefined) - { + // PushButtonParam always has value == undefined, so it needs to be excluded from this check + if (attribute.type != "PushButtonParam" && attribute.value === undefined) { return notComputed_component } switch (attribute.type) {