diff --git a/electrum/gui/qml/components/History.qml b/electrum/gui/qml/components/History.qml index 17b7a2247..6a1f758b8 100644 --- a/electrum/gui/qml/components/History.qml +++ b/electrum/gui/qml/components/History.qml @@ -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: vdragscroll.drag.active + ? listview.itemAt(0,listview.contentY + (dragb.y + dragb.height/2)).delegateModel.date + : '' font.pixelSize: constants.fontSizeLarge } }