Mercurial > trustbridge
diff ui/mainwindow.cpp @ 996:29783ef4da62
(UI) Added space in QPushButton on about page.
author | Emanuel Schuetze <emanuel@intevation.de> |
---|---|
date | Mon, 01 Sep 2014 15:05:48 +0200 |
parents | da6ce90bef17 |
children | 405c97ca4ab0 |
line wrap: on
line diff
--- a/ui/mainwindow.cpp Mon Sep 01 13:52:05 2014 +0200 +++ b/ui/mainwindow.cpp Mon Sep 01 15:05:48 2014 +0200 @@ -535,12 +535,12 @@ infoCenterLayout->insertSpacing(6, 10); QHBoxLayout *helpButtonLayout = new QHBoxLayout(); - QPushButton *helpButton = new QPushButton(tr("Show Help")); + QPushButton *helpButton = new QPushButton(" " + tr("Show Help")); helpButton->setIcon(QIcon(":/img/show-help_16.png")); connect(helpButton, SIGNAL(clicked()), this, SLOT(showHelp())); helpButtonLayout->addWidget(helpButton); #ifdef USE_CURL - QPushButton *proxySettingsButton = new QPushButton(tr("Proxy settings")); + QPushButton *proxySettingsButton = new QPushButton(" " + tr("Proxy settings")); proxySettingsButton->setIcon(QIcon(":/img/preferences-network_16.png")); connect(proxySettingsButton, SIGNAL(clicked()), this, SLOT(showProxySettings())); helpButtonLayout->addWidget(proxySettingsButton);