summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-07-25 13:50:07 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-07-25 13:54:39 +0200
commiteccb36790f1b7b49daaf2b97e58cd6cf62e0a15e (patch)
treed8ca113acbeb91c3b48dac8df46920d2a288d012
parentd6b2f27dc27e6d0e13d4e3499d4d3ddcd59bc818 (diff)
init state of the task detail widget was not correct
-rw-r--r--installerbuilder/libinstaller/packagemanagergui.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/installerbuilder/libinstaller/packagemanagergui.cpp b/installerbuilder/libinstaller/packagemanagergui.cpp
index aa170a909..d08807104 100644
--- a/installerbuilder/libinstaller/packagemanagergui.cpp
+++ b/installerbuilder/libinstaller/packagemanagergui.cpp
@@ -1404,7 +1404,7 @@ ReadyForInstallationPage::ReadyForInstallationPage(PackageManagerCore *core)
m_msgLabel->setObjectName(QLatin1String("MessageLabel"));
topLayout->addWidget(m_msgLabel);
- m_taskDetailsButton = new QPushButton(tr("&Show Task Details"), this);
+ m_taskDetailsButton = new QPushButton(tr("&Show Details"), this);
m_taskDetailsButton->setObjectName(QLatin1String("TaskDetailsButton"));
m_taskDetailsButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
connect(m_taskDetailsButton, SIGNAL(clicked()), this, SLOT(toggleDetails()));
@@ -1425,6 +1425,8 @@ ReadyForInstallationPage::ReadyForInstallationPage(PackageManagerCore *core)
baseLayout->addLayout(bottomLayout);
setLayout(baseLayout);
+
+ m_taskDetailsBrowser->setVisible(false);
}