Skip to content
Snippets Groups Projects
Commit c374fefa authored by Christian Kandeler's avatar Christian Kandeler
Browse files

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
parent 08db9ece
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,7 @@ AbstractMobileAppWizardDialog::AbstractMobileAppWizardDialog(QWidget *parent) ...@@ -46,6 +46,7 @@ AbstractMobileAppWizardDialog::AbstractMobileAppWizardDialog(QWidget *parent)
: ProjectExplorer::BaseProjectWizardDialog(parent) : ProjectExplorer::BaseProjectWizardDialog(parent)
{ {
m_targetsPage = new TargetSetupPage; m_targetsPage = new TargetSetupPage;
resize(900, 450);
m_targetsPage->setImportDirectoryBrowsingEnabled(false); m_targetsPage->setImportDirectoryBrowsingEnabled(false);
int pageId = addPage(m_targetsPage); int pageId = addPage(m_targetsPage);
wizardProgress()->item(pageId)->setTitle(tr("Qt versions")); wizardProgress()->item(pageId)->setTitle(tr("Qt versions"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment