Changed: Fixed height for Uninstall dialog

--HG--
branch : develop
feature/pipeline-tools
kervala 9 years ago
parent d09c48622d
commit 270377d854

@ -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…
Cancel
Save