diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-27 18:53:06 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-27 18:53:11 +0200 |
| commit | dfaa35d8cd2c0c10c2bd03bf3d86f2cc0ef913ee (patch) | |
| tree | c6e74d432c363b0ee6710233740233c9287689b2 | |
| parent | Merge pull request #4365 from gavinandresen/relax_isstandard (diff) | |
| parent | set shutdown title to main window title (diff) | |
| download | discoin-dfaa35d8cd2c0c10c2bd03bf3d86f2cc0ef913ee.tar.xz discoin-dfaa35d8cd2c0c10c2bd03bf3d86f2cc0ef913ee.zip | |
Merge pull request #4430
33c62c9 set shutdown title to main window title (Philip Kaufmann)
| -rw-r--r-- | src/qt/utilitydialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index eb647d017..5fb0da145 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -117,6 +117,7 @@ void ShutdownWindow::showShutdownWindow(BitcoinGUI *window) tr("Bitcoin Core is shutting down...") + "<br /><br />" + tr("Do not shut down the computer until this window disappears."))); shutdownWindow->setLayout(layout); + shutdownWindow->setWindowTitle(window->windowTitle()); // Center shutdown window at where main window was const QPoint global = window->mapToGlobal(window->rect().center()); |