mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 11:17:53 +02:00
[ImageGallery] Check the intrinsics model is not null before using it
This commit is contained in:
parent
422d9da48c
commit
db7fdefacb
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ RowLayout {
|
||||||
id: choice_component
|
id: choice_component
|
||||||
ComboBox {
|
ComboBox {
|
||||||
id: combo
|
id: combo
|
||||||
model: attribute.desc.values
|
model: attribute.desc !== undefined ? attribute.desc.values : undefined
|
||||||
width: intrinsicModel.columnWidths[columnIndex]
|
width: intrinsicModel.columnWidths[columnIndex]
|
||||||
enabled: !root.readOnly
|
enabled: !root.readOnly
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue