1
0

qml: silence undefined property errors when not really used

This commit is contained in:
Sander van Grieken
2023-02-07 10:35:34 +01:00
parent 899c468c34
commit db34efd333

View File

@@ -131,7 +131,9 @@ Pane {
Label {
id: postext
anchors.centerIn: parent
text: listview.itemAt(0,listview.contentY + (dragb.y + dragb.height/2)).delegateModel.date
text: dragb.opacity
? listview.itemAt(0,listview.contentY + (dragb.y + dragb.height/2)).delegateModel.date
: ''
font.pixelSize: constants.fontSizeLarge
}
}