From: tobtoht Date: Mon, 8 Jan 2024 13:25:17 +0000 (+0100) Subject: Statusbar: add wallet height tooltip X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=c4beab7e577e607489d74248be9f7f1b0cffd99b;p=gamesguru%2Ffeather.git Statusbar: add wallet height tooltip --- diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 8f67db7d..decf6e5f 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -700,6 +700,7 @@ void MainWindow::onSyncStatus(quint64 height, quint64 target, bool daemonSync) { this->updateNetStats(); } this->setStatusText(Utils::formatSyncStatus(height, target, daemonSync)); + m_statusLabelStatus->setToolTip(QString("Wallet height: %1").arg(QString::number(height))); } void MainWindow::onConnectionStatusChanged(int status)