Browse Source

[Qt][OSX] Fix Cmd-Q / Menu Quit shutdown on OSX

0.13
Jonas Schnelli 8 years ago
parent
commit
34ebceb25a
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
  1. 1
      src/qt/bitcoin.cpp

1
src/qt/bitcoin.cpp

@ -370,6 +370,7 @@ void BitcoinApplication::createSplashScreen(const NetworkStyle *networkStyle) @@ -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()

Loading…
Cancel
Save