# HG changeset patch # User sheepluva # Date 1316107213 -7200 # Node ID c76212c341924b073fa7b5899534d801d4c044fd # Parent 1791f776b726ea6b23d9e41b94cf493d7c456adf fix back button location in post-game stats screen diff -r 1791f776b726 -r c76212c34192 QTfrontend/pagegamestats.cpp --- a/QTfrontend/pagegamestats.cpp Thu Sep 15 17:19:49 2011 +0200 +++ b/QTfrontend/pagegamestats.cpp Thu Sep 15 19:20:13 2011 +0200 @@ -43,14 +43,16 @@ pageLayout->setSpacing(20); pageLayout->setColumnStretch(0, 1); pageLayout->setColumnStretch(1, 1); + pageLayout->setContentsMargins(7, 7, 7, 0); + + BtnSave = addButton(":/res/Save.png", pageLayout, 3, 2, true); + BtnSave->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); + connect(BtnSave, SIGNAL(clicked()), this, SIGNAL(saveDemoRequested())); BtnBack = addButton(":/res/Exit.png", pageLayout, 3, 0, true); - BtnBack->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); - - BtnSave = addButton(":/res/Save.png", pageLayout, 3, 2, true); - BtnSave->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); - BtnSave->setStyleSheet("QPushButton{margin: 12px 0px 12px 0px;}"); - connect(BtnSave, SIGNAL(clicked()), this, SIGNAL(saveDemoRequested())); + BtnBack->setFixedHeight(BtnSave->height()); + BtnBack->setFixedWidth(BtnBack->width()+2); + BtnBack->setStyleSheet("QPushButton{margin: 22px 0 9px 2px;}"); QGroupBox * gb = new QGroupBox(this); QVBoxLayout * gbl = new QVBoxLayout;