diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-22 09:33:21 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-09-22 09:33:34 +0200 |
commit | 6b09bc45b12465dc8511f1e84791e3b4db5400b8 (patch) | |
tree | 5fc60b480a30373f96f06513d985a3acf61a973a /src/qt/bitcoin.cpp | |
parent | 5547f08ec70882340fc0cf76e2a442298c02f326 (diff) | |
parent | a49f11d9edf2f7dbce154ca370494a8f86e013d0 (diff) |
Merge pull request #4941
a49f11d qt: Change splash screen to normal window (Wladimir J. van der Laan)
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 6cc6b99ceb..676f218f20 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -338,8 +338,7 @@ void BitcoinApplication::createWindow(bool isaTestNet) void BitcoinApplication::createSplashScreen(bool isaTestNet) { - SplashScreen *splash = new SplashScreen(QPixmap(), 0, isaTestNet); - splash->setAttribute(Qt::WA_DeleteOnClose); + SplashScreen *splash = new SplashScreen(0, isaTestNet); splash->show(); connect(this, SIGNAL(splashFinished(QWidget*)), splash, SLOT(slotFinish(QWidget*))); } @@ -423,8 +422,6 @@ void BitcoinApplication::initializeResult(int retval) } #endif - emit splashFinished(window); - // If -min option passed, start window minimized. if(GetBoolArg("-min", false)) { @@ -434,6 +431,8 @@ void BitcoinApplication::initializeResult(int retval) { window->show(); } + emit splashFinished(window); + #ifdef ENABLE_WALLET // Now that initialization/startup is done, process any command-line // bitcoin: URIs or payment requests: |