From 270377d854ab1da76d8f82a4939508c45e117fdb Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 12 Jun 2016 15:11:04 +0200 Subject: [PATCH] Changed: Fixed height for Uninstall dialog --HG-- branch : develop --- .../client/ryzom_installer/src/uninstallwizarddialog.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/uninstallwizarddialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/uninstallwizarddialog.cpp index 7dc4d29ff..34d7c3dc0 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/uninstallwizarddialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/uninstallwizarddialog.cpp @@ -89,6 +89,9 @@ CUninstallWizardDialog::CUninstallWizardDialog(QWidget *parent):QDialog(parent), // resize layout depending on content and constraints adjustSize(); + // fix height because to left bitmap + setFixedHeight(height()); + // click signals connect(uninstallButton, SIGNAL(clicked()), SLOT(accept())); connect(quitButton, SIGNAL(clicked()), SLOT(reject())); @@ -212,8 +215,6 @@ void CUninstallWizardDialog::onUpdateLayout() componentsTreeView->resizeColumnToContents(1); updateButtons(); - - adjustSize(); } void CUninstallWizardDialog::updateSizes()