adjust size of all childre; refs #149

master
Marc Wäckerlin 12 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) {
setupUi(this);
}
void adjust() {
_cert->adjustSize();
adjustSize();
}
Certificate& certificate(const QSslCertificate& cert) {
_cert->clear();
if (!cert.isValid()) return *this;

@ -74,7 +74,7 @@ class PinEntry: public QDialog, public Ui::PinEntry {
protected Q_SLOTS:
void on__showDetails_toggled(bool s) {
_cert->setVisible(s);
_cert->adjustSize();
_cert->adjust();
adjustSize();
}
protected:

Loading…
Cancel
Save