From fa72da57fd2239f4a5807f61dd449cbd3655adc3 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Tue, 7 Feb 2023 00:06:05 +0100 Subject: [PATCH] Revert "qml: silence undefined property errors when not really used" This reverts commit ba51cef0d5e9b3cdf71199940ef02a3cb9f5dc1d. --- electrum/gui/qml/components/History.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/electrum/gui/qml/components/History.qml b/electrum/gui/qml/components/History.qml index 6a1f758b8..17b7a2247 100644 --- a/electrum/gui/qml/components/History.qml +++ b/electrum/gui/qml/components/History.qml @@ -131,9 +131,7 @@ Pane { Label { id: postext anchors.centerIn: parent - text: vdragscroll.drag.active - ? listview.itemAt(0,listview.contentY + (dragb.y + dragb.height/2)).delegateModel.date - : '' + text: listview.itemAt(0,listview.contentY + (dragb.y + dragb.height/2)).delegateModel.date font.pixelSize: constants.fontSizeLarge } }