aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/iwelcomepage.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2021-03-04 11:57:32 +0100
committerEike Ziller <eike.ziller@qt.io>2021-03-05 07:34:32 +0000
commit28f53a9040a286b5892c619d3b3adbf9165d1358 (patch)
tree7122353a218aee4291092a613c5a41c6fdab7f99 /src/plugins/coreplugin/iwelcomepage.cpp
parentc43956ea453b033f58eca82d10c4377d51220f74 (diff)
macOS: Fix vanishing controls in Welcome mode with macOS dark mode
The example set selector and the search input field were missing some palette tweaks that were done by other classes deriving from WelcomePageFrame. Fixes: QTCREATORBUG-25405 Change-Id: I43a022aa5464a1167f94d26e945de225a436b768 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/coreplugin/iwelcomepage.cpp')
-rw-r--r--src/plugins/coreplugin/iwelcomepage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/coreplugin/iwelcomepage.cpp b/src/plugins/coreplugin/iwelcomepage.cpp
index e305bbe7d5..acb59fe9ea 100644
--- a/src/plugins/coreplugin/iwelcomepage.cpp
+++ b/src/plugins/coreplugin/iwelcomepage.cpp
@@ -58,7 +58,7 @@ IWelcomePage::~IWelcomePage()
g_welcomePages.removeOne(this);
}
-static QPalette buttonPalette(bool isActive, bool isCursorInside, bool forText)
+QPalette WelcomePageFrame::buttonPalette(bool isActive, bool isCursorInside, bool forText)
{
QPalette pal;
Theme *theme = Utils::creatorTheme();
@@ -175,8 +175,8 @@ bool WelcomePageButtonPrivate::isActive() const
void WelcomePageButtonPrivate::doUpdate(bool cursorInside)
{
const bool active = isActive();
- q->setPalette(buttonPalette(active, cursorInside, false));
- const QPalette lpal = buttonPalette(active, cursorInside, true);
+ q->setPalette(WelcomePageFrame::buttonPalette(active, cursorInside, false));
+ const QPalette lpal = WelcomePageFrame::buttonPalette(active, cursorInside, true);
m_label->setPalette(lpal);
if (m_icon)
m_icon->setPalette(lpal);