From 240fe81961c599f8f8e18a68395aec99d4010cf9 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Fri, 27 Nov 2020 12:49:51 +1100 Subject: [PATCH] extend UI styling to 5.15.2 since they still haven't fixed this bug --- 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 e4fa53722..7866ce7a9 100644 --- a/app/ui/style/style.cpp +++ b/app/ui/style/style.cpp @@ -39,7 +39,7 @@ QMap StyleManager::available_themes_; void StyleManager::UseOSNativeStyling(QWidget *widget) { -#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) || QT_VERSION > QT_VERSION_CHECK(5, 15, 1) +#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) || QT_VERSION > QT_VERSION_CHECK(5, 15, 2) #if defined(Q_OS_WINDOWS) QStyle* s = QStyleFactory::create(QStringLiteral("windowsvista")); widget->setStyle(s);