diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-11-08 10:46:40 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-11-08 10:46:40 +0100 |
commit | 4eb60c04c87438f9e9ac5957980989fe46c39550 (patch) | |
tree | 0d0998bef0e09af748665c6673722229349d0118 /client | |
parent | 01ab57dabbc15f52143089e53317bb51b71dc7f2 (diff) | |
parent | 3d5fcad258dd3360df5e099c65bf8e3e599cb35e (diff) |
Merge branch 'master' of http://git.aasimon.org/public/pracro
Diffstat (limited to 'client')
-rw-r--r-- | client/template.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/template.cc b/client/template.cc index a5c4715..b3b1d5b 100644 --- a/client/template.cc +++ b/client/template.cc @@ -38,7 +38,7 @@ Template::Template(NetCom &n) QVBoxLayout *l = new QVBoxLayout(); wdg->setLayout(l); - wdg->setContentsMargins(50, 50, 50, 50); + wdg->setContentsMargins(50, 0, 0, 0); l->addStretch(); @@ -49,7 +49,7 @@ Template::Template(NetCom &n) templ->setFont(font); l->addWidget(templ); - l->addStretch(); + l->addSpacing(10); QPushButton *btn = new QPushButton(tr("Open")); btn->setIcon(QIcon(":icons/open.png")); |