diff options
| author | Philip Kaufmann <[email protected]> | 2014-10-02 11:26:36 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-10-02 11:26:36 +0200 |
| commit | 4bd11852802f3ed11e17e8d66660ce2e60f02287 (patch) | |
| tree | 9225a34a403125a512df3275685f5b0fb81f2375 /src/qt/splashscreen.cpp | |
| parent | Revert merge of pull #4845 (diff) | |
| download | discoin-4bd11852802f3ed11e17e8d66660ce2e60f02287.tar.xz discoin-4bd11852802f3ed11e17e8d66660ce2e60f02287.zip | |
Qt: allow "emergency" shutdown during startup
- allows closing our splash screen to abort startup
Diffstat (limited to 'src/qt/splashscreen.cpp')
| -rw-r--r-- | src/qt/splashscreen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 4fe610794..74512e62a 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -177,5 +177,6 @@ void SplashScreen::paintEvent(QPaintEvent *event) void SplashScreen::closeEvent(QCloseEvent *event) { + StartShutdown(); // allows an "emergency" shutdown during startup event->ignore(); } |