From c0e7fc6dec1e312102e3dcd6a9f23fc7d73411b2 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Thu, 9 Mar 2023 16:17:39 +0100 Subject: [PATCH] qml: don't show placeholder in History when empty history list and synchronizing --- electrum/gui/qml/components/History.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/History.qml b/electrum/gui/qml/components/History.qml index f989480df..3b8a339a8 100644 --- a/electrum/gui/qml/components/History.qml +++ b/electrum/gui/qml/components/History.qml @@ -82,12 +82,12 @@ Pane { ScrollIndicator.vertical: ScrollIndicator { } Label { - visible: Daemon.currentWallet.historyModel.count == 0 + visible: Daemon.currentWallet.historyModel.count == 0 && !Daemon.currentWallet.synchronizing anchors.centerIn: parent width: listview.width * 4/5 font.pixelSize: constants.fontSizeXXLarge color: constants.mutedForeground - text: qsTr('No transactions yet in this wallet') + text: qsTr('No transactions in this wallet yet') wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter }