mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 07:18:25 +02:00
Merge pull request #2578 from alicevision/fix/unexposedEdges
[GraphEditor] Node: Check if unexposed `ListAttributes` contain links
This commit is contained in:
commit
2a27f4c6fe
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue