From 19eabf283062ed0d046b8ce8dee8a14af7c6de31 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Wed, 30 Dec 2020 18:27:44 +1100 Subject: [PATCH] fixed variable that didn't change since it was behind an ifdef guard --- app/ui/style/style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/style/style.cpp b/app/ui/style/style.cpp index 602eceefb..dbae26b2c 100644 --- a/app/ui/style/style.cpp +++ b/app/ui/style/style.cpp @@ -44,7 +44,7 @@ void StyleManager::UseOSNativeStyling(QWidget *widget) #if defined(Q_OS_WINDOWS) QStyle* s = QStyleFactory::create(QStringLiteral("windowsvista")); widget->setStyle(s); - widget->setPalette(standard_palette_); + widget->setPalette(platform_palette_); #elif defined(Q_OS_MAC) QStyle* s = QStyleFactory::create(QStringLiteral("macintosh")); widget->setStyle(s);