Skip to content

Commit

Permalink
fixed variable that didn't change since it was behind an ifdef guard
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmattkc committed Dec 30, 2020
1 parent c0095a4 commit 19eabf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ui/style/style.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 19eabf2

Please sign in to comment.