We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a4c3d commit 1e5d14bCopy full SHA for 1e5d14b
src/qt/bitcoin.cpp
@@ -516,14 +516,14 @@ void BitcoinApplication::initializeResult(bool success)
516
QTimer::singleShot(100, paymentServer, SLOT(uiReady()));
517
#endif
518
} else {
519
- Q_EMIT splashFinished(window);
520
- quit(); // Exit main loop
+ Q_EMIT splashFinished(window); // Make sure splash screen doesn't stick around during shutdown
+ quit(); // Exit first main loop invocation
521
}
522
523
524
void BitcoinApplication::shutdownResult()
525
{
526
- quit(); // Exit main loop after shutdown finished
+ quit(); // Exit second main loop invocation after shutdown finished
527
528
529
void BitcoinApplication::handleRunawayException(const QString &message)
0 commit comments