diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 89ce7d4a..8bbea690 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -55,6 +55,7 @@ #include #include #include +#include #include @@ -480,6 +481,12 @@ void BitcoinGUI::restoreWindowGeometry() QSettings settings; QPoint pos = settings.value("nWindowPos").toPoint(); QSize size = settings.value("nWindowSize", QSize(850, 550)).toSize(); + if (!pos.x() && !pos.y()) + { + QRect screen = qApp->desktop()->screenGeometry(); + pos.setX((screen.width()-size.width())/2); + pos.setY((screen.height()-size.height())/2); + } resize(size); move(pos); }