mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
Show window in center of screen on first launch
This commit is contained in:
parent
e11f1806b6
commit
f688056f9d
@ -55,6 +55,7 @@
|
|||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
#include <QStyle>
|
#include <QStyle>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
|
#include <QDesktopWidget>
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
@ -480,6 +481,12 @@ void BitcoinGUI::restoreWindowGeometry()
|
|||||||
QSettings settings;
|
QSettings settings;
|
||||||
QPoint pos = settings.value("nWindowPos").toPoint();
|
QPoint pos = settings.value("nWindowPos").toPoint();
|
||||||
QSize size = settings.value("nWindowSize", QSize(850, 550)).toSize();
|
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);
|
resize(size);
|
||||||
move(pos);
|
move(pos);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user