diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 8ea79f9..1fe5095 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -881,13 +881,16 @@ void MainWindow::showConnectionStatusDialog() {
         case Wallet::ConnectionStatus_WrongVersion:
             statusMsg = "Wallet is connected to incompatible daemon.";
             break;
-        case Wallet::ConnectionStatus_Synchronizing: {
-            auto node = m_ctx->nodes->connection();
-            statusMsg = QString("Wallet is connected to %1").arg(node.full);
-        }
+        case Wallet::ConnectionStatus_Synchronizing:
         case Wallet::ConnectionStatus_Synchronized: {
-            if (synchronized)
-                statusMsg += " and synchronized";
+            auto node = m_ctx->nodes->connection();
+            statusMsg = QString("Wallet is connected to %1 ").arg(node.full);
+
+            if (synchronized) {
+                statusMsg += "and synchronized";
+            } else {
+                statusMsg += "and synchronizing";
+            }
             break;
         }
         default: