# HG changeset patch # User Raimund Renkert # Date 1397663200 -7200 # Node ID 03c562b1a3ea9ca19fdc3d746db03c921c1bc8c9 # Parent 847fdfd33a22703b4ac850d806f29dc3c589e8da Fixed layout in TrustBridge Adminstration dialogs. diff -r 847fdfd33a22 -r 03c562b1a3ea ui/createcertlistdialog.cpp --- 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())); diff -r 847fdfd33a22 -r 03c562b1a3ea ui/createinstallerdialog.cpp --- 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()));