Browse Source

qml: silence undefined property errors when not really used

master
Sander van Grieken 3 years ago
parent
commit
db34efd333
  1. 4
      electrum/gui/qml/components/History.qml

4
electrum/gui/qml/components/History.qml

@ -131,7 +131,9 @@ Pane {
Label { Label {
id: postext id: postext
anchors.centerIn: parent 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 font.pixelSize: constants.fontSizeLarge
} }
} }

Loading…
Cancel
Save