Mercurial > trustbridge
changeset 417:03c562b1a3ea
Fixed layout in TrustBridge Adminstration dialogs.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 16 Apr 2014 17:46:40 +0200 |
parents | 847fdfd33a22 |
children | 1be8826207ca |
files | ui/createcertlistdialog.cpp ui/createinstallerdialog.cpp |
diffstat | 2 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/ui/createcertlistdialog.cpp Wed Apr 16 17:46:07 2014 +0200 +++ b/ui/createcertlistdialog.cpp Wed Apr 16 17:46:40 2014 +0200 @@ -48,7 +48,7 @@ headerLayout->addWidget(headerSeparator); QLabel *certLabel = new QLabel("Select signature certificate (secret key):"); - certLabel->setFixedWidth(140); + certLabel->setFixedWidth(205); mCertFile = new QLineEdit(); QPushButton *certSelect = new QPushButton("..."); connect(certSelect, SIGNAL(clicked()), this, SLOT(openCertificateSelect())); @@ -58,7 +58,7 @@ certLayout->addWidget(certSelect); QLabel *saveLabel = new QLabel("Select output folder:"); - saveLabel->setFixedWidth(140); + saveLabel->setFixedWidth(205); mSaveFile = new QLineEdit(); QPushButton *saveSelect = new QPushButton("..."); connect(saveSelect, SIGNAL(clicked()), this, SLOT(openSaveLocation())); @@ -78,7 +78,7 @@ centerLayout->addLayout(saveLayout); centerLayout->insertSpacing(3, 10); - QPushButton *create = new QPushButton(tr("Create List")); + QPushButton *create = new QPushButton(tr("Sign list")); connect(create, SIGNAL(clicked()), this, SLOT(createList())); QPushButton *cancel = new QPushButton(tr("Cancel")); connect(cancel, SIGNAL(clicked()), this, SLOT(close()));
--- a/ui/createinstallerdialog.cpp Wed Apr 16 17:46:07 2014 +0200 +++ b/ui/createinstallerdialog.cpp Wed Apr 16 17:46:40 2014 +0200 @@ -48,7 +48,7 @@ headerLayout->addWidget(headerSeparator); QLabel *archiveLabel = new QLabel(tr("Select source archive:")); - archiveLabel->setFixedWidth(140); + archiveLabel->setFixedWidth(225); mArchiveFile = new QLineEdit(); QPushButton *archiveSelect = new QPushButton("..."); connect(archiveSelect, SIGNAL(clicked()), this, SLOT(openArchiveSelect())); @@ -58,7 +58,7 @@ archiveLayout->addWidget(archiveSelect); QLabel *certLabel = new QLabel(tr("Select code signing certificate (secret key):")); - certLabel->setFixedWidth(140); + certLabel->setFixedWidth(225); mCertFile = new QLineEdit(); QPushButton *certSelect = new QPushButton("..."); connect(certSelect, SIGNAL(clicked()), this, SLOT(openCertificateSelect())); @@ -68,7 +68,7 @@ certLayout->addWidget(certSelect); QLabel *saveLabel = new QLabel(tr("Select output folder:")); - saveLabel->setFixedWidth(140); + saveLabel->setFixedWidth(225); mSaveFile = new QLineEdit(); QPushButton *saveSelect = new QPushButton("..."); connect(saveSelect, SIGNAL(clicked()), this, SLOT(openSaveLocation()));