We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
attribute.values
1 parent f756304 commit beebdc3Copy full SHA for beebdc3
meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml
@@ -345,7 +345,7 @@ RowLayout {
345
id: comboBox_component
346
347
FilterComboBox {
348
- inputModel: attribute.desc.values
+ inputModel: attribute.values
349
350
Component.onCompleted: {
351
currentIndex = find(attribute.value)
@@ -362,7 +362,7 @@ RowLayout {
362
// but if only reopen the combo box, keep the current value
363
364
//convert all values of desc values as string
365
- var valuesAsString = attribute.desc.values.map(function(value) {
+ var valuesAsString = attribute.values.map(function(value) {
366
return value.toString()
367
})
368
if (valuesAsString.includes(attribute.value) || attribute.value === attribute.desc.value) {
0 commit comments