Changed: Fixed height for Uninstall dialog

This commit is contained in:
kervala 2016-06-12 15:11:04 +02:00
parent c97fbd9f7a
commit 17169f50cf

View file

@ -89,6 +89,9 @@ CUninstallWizardDialog::CUninstallWizardDialog(QWidget *parent):QDialog(parent),
// resize layout depending on content and constraints // resize layout depending on content and constraints
adjustSize(); adjustSize();
// fix height because to left bitmap
setFixedHeight(height());
// click signals // click signals
connect(uninstallButton, SIGNAL(clicked()), SLOT(accept())); connect(uninstallButton, SIGNAL(clicked()), SLOT(accept()));
connect(quitButton, SIGNAL(clicked()), SLOT(reject())); connect(quitButton, SIGNAL(clicked()), SLOT(reject()));
@ -212,8 +215,6 @@ void CUninstallWizardDialog::onUpdateLayout()
componentsTreeView->resizeColumnToContents(1); componentsTreeView->resizeColumnToContents(1);
updateButtons(); updateButtons();
adjustSize();
} }
void CUninstallWizardDialog::updateSizes() void CUninstallWizardDialog::updateSizes()