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.leftMargin: hifi.dimensions.textPadding
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
id: popupText id: popupText
text: listView.model[index] text: listView.model[index] ? listView.model[index] : ""
size: hifi.fontSizes.textFieldInput size: hifi.fontSizes.textFieldInput
color: hifi.colors.baseGray color: hifi.colors.baseGray
} }