mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-30 12:23:05 +02:00
Fix a QML error
This commit is contained in:
parent
0ef13e6c01
commit
3780b18cc0
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ FocusScope {
|
|||
anchors.leftMargin: hifi.dimensions.textPadding
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
id: popupText
|
||||
text: listView.model[index]
|
||||
text: listView.model[index] ? listView.model[index] : ""
|
||||
size: hifi.fontSizes.textFieldInput
|
||||
color: hifi.colors.baseGray
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue