WelcomePage: adjusting minimum size

Task-number: QTCREATORBUG-6818

Change-Id: I030c38e0cc5e370a8f18f5cefc805a51ec730c9a
Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
thohartm
2012-05-22 16:59:47 +02:00
committed by Thomas Hartmann
parent d341e59d3d
commit 7b856ee45e

View File

@@ -162,7 +162,7 @@ WelcomeMode::WelcomeMode() :
layout->addWidget(scrollArea); layout->addWidget(scrollArea);
scrollArea->setWidget(m_welcomePage); scrollArea->setWidget(m_welcomePage);
scrollArea->setWidgetResizable(true); scrollArea->setWidgetResizable(true);
m_welcomePage->setMinimumWidth(860); m_welcomePage->setMinimumWidth(880);
m_welcomePage->setMinimumHeight(548); m_welcomePage->setMinimumHeight(548);
PluginManager *pluginManager = PluginManager::instance(); PluginManager *pluginManager = PluginManager::instance();
connect(pluginManager, SIGNAL(objectAdded(QObject*)), SLOT(welcomePluginAdded(QObject*))); connect(pluginManager, SIGNAL(objectAdded(QObject*)), SLOT(welcomePluginAdded(QObject*)));