3
0
Fork 0
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:
David Rowe 2016-06-09 15:14:14 +12:00
parent 0ef13e6c01
commit 3780b18cc0

View file

@ -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
}