summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatja Marttila <katja.marttila@qt.io>2019-09-24 10:09:27 +0300
committerKatja Marttila <katja.marttila@qt.io>2019-09-24 08:38:48 +0000
commit63723d0d7405cf6ab56347e6efac9cecc0309036 (patch)
treef2a82525df7cb9c52f0f6a40671d4cf6a4b8603a
parenta0647b7aa678ca95af421c1f4be85641954710e4 (diff)
Hide scrollarea background while fetching categories
Previously we only hide the label inside the scroll area while fetching categories, which works if the scrollarea has no background. In macOS there is a background color in the scrollarea by default so hide the scrollarea instead of the label to prevent the scrollarea colored background to be visible. Change-Id: I2ddc97f7ae9a268b8972c91ab6519381fe7b689c Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
-rw-r--r--src/libs/installer/componentselectionpage_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/componentselectionpage_p.cpp b/src/libs/installer/componentselectionpage_p.cpp
index 8c0cf2a11..e1b9649a7 100644
--- a/src/libs/installer/componentselectionpage_p.cpp
+++ b/src/libs/installer/componentselectionpage_p.cpp
@@ -392,7 +392,7 @@ void ComponentSelectionPagePrivate::updateWidgetVisibility(bool show)
m_checkDefault->setVisible(!show);
m_checkAll->setVisible(!show);
m_uncheckAll->setVisible(!show);
- m_descriptionLabel->setVisible(!show);
+ m_descriptionScrollArea->setVisible(!show);
m_sizeLabel->setVisible(!show);
if (QAbstractButton *bspButton = q->gui()->button(QWizard::CustomButton2))