From: gg Date: Mon, 19 Jan 2026 03:07:10 +0000 (-0500) Subject: splashDialog X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=eccd520ec380bb833c2c85ae7e8ce18cc856c2ec;p=gamesguru%2Ffeather.git splashDialog --- 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()); }