# HG changeset patch # User Henek # Date 1316112778 -7200 # Node ID 6c6ca1a36d5696f48d9e3530602c8e67e93e38ae # Parent 31ac063f47cb22ecb07d04bfd42ce27d45a14600# Parent c76212c341924b073fa7b5899534d801d4c044fd merge :( diff -r 31ac063f47cb -r 6c6ca1a36d56 QTfrontend/pagegamestats.cpp --- a/QTfrontend/pagegamestats.cpp Thu Sep 15 20:51:43 2011 +0200 +++ b/QTfrontend/pagegamestats.cpp Thu Sep 15 20:52:58 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;