Skip to content

Commit faddddc

Browse files
committed
[qml] AttributeEditor: Do not display ShapeAttribute and ShapeListAttribute
1 parent 509778b commit faddddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/ui/qml/GraphEditor/AttributeEditor.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ListView {
2727
ScrollBar.vertical: MScrollBar { id: scrollBar }
2828

2929
delegate: Loader {
30-
active: (object.enabled || object.hasAnyOutputLinks) && (
30+
active: !object.hasDisplayableShape && (object.enabled || object.hasAnyOutputLinks) && (
3131
!objectsHideable
3232
|| ((!object.desc.advanced || GraphEditorSettings.showAdvancedAttributes)
3333
&& (object.isDefault && GraphEditorSettings.showDefaultAttributes || !object.isDefault && GraphEditorSettings.showModifiedAttributes)

0 commit comments

Comments
 (0)