Statusbar: add wallet height tooltip

This commit is contained in:
tobtoht 2024-01-08 14:25:17 +01:00
parent cf0c3b8d82
commit c4beab7e57
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -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)