Merge pull request #2578 from alicevision/fix/unexposedEdges

[GraphEditor] Node: Check if unexposed `ListAttributes` contain links
This commit is contained in:
Fabien Castan 2024-11-29 21:58:49 +01:00 committed by GitHub
commit 2a27f4c6fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {