Changed: Fixed height for Uninstall dialog
This commit is contained in:
parent
02012a8601
commit
00713e84b2
1 changed files with 3 additions and 2 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue