From c374fefa28dcfb1842f079dca31bd9253035fbd0 Mon Sep 17 00:00:00 2001 From: Christian Kandeler <christian.kandeler@nokia.com> Date: Thu, 23 Sep 2010 16:45:00 +0200 Subject: [PATCH] Mobile/QML wizard: Use same size as other wizards with targets page. It would be nicer to put the size specification into the target setup page, but then the wizard would resize itself when loading that page, and that is not nice either. Reluctantly-reviewed-by: Alessandro Portale --- .../qt4projectmanager/wizards/abstractmobileappwizard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.cpp b/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.cpp index bab1dea7ba8..a2ba842938b 100644 --- a/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.cpp +++ b/src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.cpp @@ -46,6 +46,7 @@ AbstractMobileAppWizardDialog::AbstractMobileAppWizardDialog(QWidget *parent) : ProjectExplorer::BaseProjectWizardDialog(parent) { m_targetsPage = new TargetSetupPage; + resize(900, 450); m_targetsPage->setImportDirectoryBrowsingEnabled(false); int pageId = addPage(m_targetsPage); wizardProgress()->item(pageId)->setTitle(tr("Qt versions")); -- GitLab