adjust size of all childre; refs #149
This commit is contained in:
@@ -21,6 +21,10 @@ class Certificate: public QWidget, protected Ui::Certificate {
|
|||||||
Certificate(QWidget* p): QWidget(p) {
|
Certificate(QWidget* p): QWidget(p) {
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
}
|
}
|
||||||
|
void adjust() {
|
||||||
|
_cert->adjustSize();
|
||||||
|
adjustSize();
|
||||||
|
}
|
||||||
Certificate& certificate(const QSslCertificate& cert) {
|
Certificate& certificate(const QSslCertificate& cert) {
|
||||||
_cert->clear();
|
_cert->clear();
|
||||||
if (!cert.isValid()) return *this;
|
if (!cert.isValid()) return *this;
|
||||||
|
@@ -74,7 +74,7 @@ class PinEntry: public QDialog, public Ui::PinEntry {
|
|||||||
protected Q_SLOTS:
|
protected Q_SLOTS:
|
||||||
void on__showDetails_toggled(bool s) {
|
void on__showDetails_toggled(bool s) {
|
||||||
_cert->setVisible(s);
|
_cert->setVisible(s);
|
||||||
_cert->adjustSize();
|
_cert->adjust();
|
||||||
adjustSize();
|
adjustSize();
|
||||||
}
|
}
|
||||||
protected:
|
protected:
|
||||||
|
Reference in New Issue
Block a user