From 1483693fc746699cc656a874658d42cfdd0c909c Mon Sep 17 00:00:00 2001 From: gg Date: Sun, 18 Jan 2026 17:31:30 -0500 Subject: [PATCH] wip --- src/MainWindow.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 148fb21c..f0db0ff4 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -619,7 +619,7 @@ void MainWindow::initOffline() { connect(m_updateNetworkInfoAction, &QAction::triggered, this, [this]() { if (!m_wallet) return; - this->setStatusText(tr("Scanning..."), true); + qDebug() << "[UI] User requested network info and scan of mempool"; // FIX: Temporarily connect if we are disconnected/paused if (m_wallet->connectionStatus() == Wallet::ConnectionStatus_Disconnected) { @@ -900,12 +900,7 @@ void MainWindow::updateSyncStatusToolTip() { } if (blocksBehind > 0) { - // Show estimate if significant or if explicitly paused - if (blocksBehind > 2 || isPaused) { - tooltip += tr("\n~%1 blocks behind").arg(QLocale().toString(blocksBehind)); - } - } else if (isPaused) { - tooltip += tr("\n(Sync paused. Mempool alive.)"); + tooltip += tr("\n~%1 blocks behind").arg(QLocale().toString(blocksBehind)); } m_statusLabelStatus->setToolTip(tooltip); @@ -1052,7 +1047,7 @@ void MainWindow::onSyncStatus(quint64 height, quint64 target, bool daemonSync) { m_lastSyncStatusUpdate = QDateTime::currentDateTime(); this->updateNetStats(); - this->setStatusText(tr("Synchronized")); + // this->setStatusText(tr("Synchronized")); // TODO: do we need this? // Persist sync state for next boot conf()->set(Config::lastKnownNetworkHeight, static_cast(target)); -- 2.52.0