diff options
| author | Jonas Schnelli <[email protected]> | 2016-05-12 13:15:33 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-05-12 13:15:39 +0200 |
| commit | 169d379c98357a17e634f34b5e72033c69f9a7cb (patch) | |
| tree | 173fde5654575929c9f604d21131ad4f281d5c97 /src | |
| parent | Merge #8006: Qt: Add option to disable the system tray icon (diff) | |
| parent | [Qt][OSX] Fix Cmd-Q / Menu Quit shutdown on OSX (diff) | |
| download | discoin-169d379c98357a17e634f34b5e72033c69f9a7cb.tar.xz discoin-169d379c98357a17e634f34b5e72033c69f9a7cb.zip | |
Merge #8046: [Qt][OSX] Fix Cmd-Q / Menu Quit shutdown on OSX
34ebceb [Qt][OSX] Fix Cmd-Q / Menu Quit shutdown on OSX (Jonas Schnelli)
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/bitcoin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 9c21bb24c..6218ab6ab 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -370,6 +370,7 @@ void BitcoinApplication::createSplashScreen(const NetworkStyle *networkStyle) splash->setAttribute(Qt::WA_DeleteOnClose); splash->show(); connect(this, SIGNAL(splashFinished(QWidget*)), splash, SLOT(slotFinish(QWidget*))); + connect(this, SIGNAL(requestedShutdown()), splash, SLOT(close())); } void BitcoinApplication::startThread() |