Show window in center of screen on first launch

This commit is contained in:
Roman Mindalev 2013-03-21 00:05:50 +04:00
parent e11f1806b6
commit f688056f9d

View file

@ -55,6 +55,7 @@
#include <QMimeData>
#include <QStyle>
#include <QSettings>
#include <QDesktopWidget>
#include <iostream>
@ -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);
}