From 9bbfb89953d702befb91b1d362aecf02d012688c Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Thu, 15 Mar 2012 11:55:24 +0100 Subject: [PATCH] WelcomePage: adding a minimum height Task-number: QTCREATORBUG-7115 Change-Id: I001cf9421f63b9ce44a88f0d274624ff48777ced Reviewed-by: Alessandro Portale --- src/plugins/welcome/welcomeplugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/welcome/welcomeplugin.cpp b/src/plugins/welcome/welcomeplugin.cpp index b34e36deee9..6fa140612f6 100644 --- a/src/plugins/welcome/welcomeplugin.cpp +++ b/src/plugins/welcome/welcomeplugin.cpp @@ -163,6 +163,7 @@ WelcomeMode::WelcomeMode() : scrollArea->setWidget(m_welcomePage); scrollArea->setWidgetResizable(true); m_welcomePage->setMinimumWidth(860); + m_welcomePage->setMinimumHeight(548); PluginManager *pluginManager = PluginManager::instance(); connect(pluginManager, SIGNAL(objectAdded(QObject*)), SLOT(welcomePluginAdded(QObject*)));