adjust size of all childre; refs #149

master
Marc Wäckerlin 13 years ago
parent be64cff014
commit 27d7590671
  1. 4
      src/certificate.hxx
  2. 2
      src/pinentry.hxx

@ -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:

Loading…
Cancel
Save