From: gg Date: Mon, 12 Jan 2026 20:26:19 +0000 (-0500) Subject: show "[PAUSED] x Blocks to go" on Connecting Status, too X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=9702dc22a71731e1bc8f5256749ad0d1117e36a5;p=gamesguru%2Ffeather.git show "[PAUSED] x Blocks to go" on Connecting Status, too --- diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index c9ae746f..2a9ca2db 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1014,7 +1014,9 @@ void MainWindow::onConnectionStatusChanged(int status) } if (conf()->get(Config::syncPaused).toBool() && !conf()->get(Config::offlineMode).toBool()) { - if (status == Wallet::ConnectionStatus_Synchronizing || status == Wallet::ConnectionStatus_Synchronized) { + if (status == Wallet::ConnectionStatus_Synchronizing + || status == Wallet::ConnectionStatus_Synchronized + || status == Wallet::ConnectionStatus_Connecting) { this->setPausedSyncStatus(); } }