forked from teamnwah/openmw-tes3coop
14 lines
338 B
C++
14 lines
338 B
C++
|
|
||
|
#include "newgame.hpp"
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include <QDesktopWidget>
|
||
|
|
||
|
CSVDoc::NewGameDialogue::NewGameDialogue()
|
||
|
{
|
||
|
setWindowTitle ("Create New Game");
|
||
|
|
||
|
QRect scr = QApplication::desktop()->screenGeometry();
|
||
|
QRect rect = geometry();
|
||
|
move (scr.center().x() - rect.center().x(), scr.center().y() - rect.center().y());
|
||
|
}
|