From eccd520ec380bb833c2c85ae7e8ce18cc856c2ec Mon Sep 17 00:00:00 2001 From: gg Date: Sun, 18 Jan 2026 22:07:10 -0500 Subject: [PATCH] splashDialog --- src/WindowManager.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/WindowManager.cpp b/src/WindowManager.cpp index 344b6969..9fab17e5 100644 --- a/src/WindowManager.cpp +++ b/src/WindowManager.cpp @@ -213,6 +213,11 @@ void WindowManager::raise() { m_wizard->raise(); m_wizard->activateWindow(); } + else if (m_openingWallet && m_splashDialog) { + m_splashDialog->show(); + m_splashDialog->raise(); + m_splashDialog->activateWindow(); + } else { // This shouldn't happen this->close(); @@ -317,6 +322,8 @@ void WindowManager::tryOpenWallet(const QString &path, const QString &password) } m_openingWallet = true; + m_splashDialog->setMessage("Opening wallet..."); + m_splashDialog->show(); m_walletManager->openWalletAsync(path, password, constants::networkType, constants::kdfRounds, Utils::ringDatabasePath()); } -- 2.52.0