# HG changeset patch # User unc0rr # Date 1225464556 0 # Node ID 06f6ae457a2ff919cd4c2cc1fb12b3b565a61cf7 # Parent e79e4b48c771d94f3f635f87bd3d46a57999f6e3 Finish reorganizing local game page diff -r e79e4b48c771 -r 06f6ae457a2f QTfrontend/pages.cpp --- a/QTfrontend/pages.cpp Fri Oct 31 14:40:00 2008 +0000 +++ b/QTfrontend/pages.cpp Fri Oct 31 14:49:16 2008 +0000 @@ -595,8 +595,10 @@ QHBoxLayout * topLine = new QHBoxLayout(); QHBoxLayout * middleLine = new QHBoxLayout(); QHBoxLayout * bottomLine = new QHBoxLayout(); + vLayout->addStretch(); vLayout->addLayout(topLine); vLayout->addLayout(middleLine); + vLayout->addStretch(); vLayout->addLayout(bottomLine); BtnSimpleGamePage = addButton(":/res/SimpleGame.png", topLine, 0, true); @@ -605,8 +607,9 @@ BtnTrainPage = addButton(":/res/Trainings.png", middleLine, 0, true); BtnBack = addButton(":/res/Exit.png", bottomLine, 0, true); + bottomLine->addStretch(); + BtnDemos = addButton(tr(":/res/Record.png"), bottomLine, 1, true); - BtnLoad = addButton(":/res/Save.png", bottomLine, 2, true); BtnLoad->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); } diff -r e79e4b48c771 -r 06f6ae457a2f QTfrontend/res/Multiplayer.png Binary file QTfrontend/res/Multiplayer.png has changed diff -r e79e4b48c771 -r 06f6ae457a2f QTfrontend/res/Record.png Binary file QTfrontend/res/Record.png has changed diff -r e79e4b48c771 -r 06f6ae457a2f QTfrontend/res/SimpleGame.png Binary file QTfrontend/res/SimpleGame.png has changed diff -r e79e4b48c771 -r 06f6ae457a2f QTfrontend/res/Trainings.png Binary file QTfrontend/res/Trainings.png has changed