mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 02:08:08 +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
|
||||
ComboBox {
|
||||
id: combo
|
||||
model: attribute.desc.values
|
||||
model: attribute.desc !== undefined ? attribute.desc.values : undefined
|
||||
width: intrinsicModel.columnWidths[columnIndex]
|
||||
enabled: !root.readOnly
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue