Skip to content

Commit

Permalink
Merge pull request #2578 from alicevision/fix/unexposedEdges
Browse files Browse the repository at this point in the history
[GraphEditor] Node: Check if unexposed `ListAttributes` contain links
  • Loading branch information
fabiencastan authored Nov 29, 2024
2 parents 230e7ac + 248229e commit 2a27f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meshroom/ui/qml/GraphEditor/Node.qml
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ Item {
delegate: Loader {
id: paramLoader
active: !object.isOutput && !object.desc.exposed && object.desc.visible
visible: Boolean(object.enabled || object.isLink || object.hasOutputConnections)
property bool isFullyActive: Boolean(m.displayParams || object.isLink || object.hasOutputConnections)
visible: Boolean(object.enabled || object.isLinkNested || object.hasOutputConnections)
property bool isFullyActive: Boolean(m.displayParams || object.isLinkNested || object.hasOutputConnections)
width: parent.width

sourceComponent: AttributePin {
Expand Down

0 comments on commit 2a27f4c

Please sign in to comment.