mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +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 {
|
delegate: Loader {
|
||||||
id: paramLoader
|
id: paramLoader
|
||||||
active: !object.isOutput && !object.desc.exposed && object.desc.visible
|
active: !object.isOutput && !object.desc.exposed && object.desc.visible
|
||||||
visible: Boolean(object.enabled || object.isLink || object.hasOutputConnections)
|
visible: Boolean(object.enabled || object.isLinkNested || object.hasOutputConnections)
|
||||||
property bool isFullyActive: Boolean(m.displayParams || object.isLink || object.hasOutputConnections)
|
property bool isFullyActive: Boolean(m.displayParams || object.isLinkNested || object.hasOutputConnections)
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
||||||
sourceComponent: AttributePin {
|
sourceComponent: AttributePin {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue