From 0c95556618c19e7ad5c8fd8b10705df32f36d926 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Sun, 5 Sep 2021 17:13:05 +0200 Subject: [PATCH] Android: don't set fallback icon theme --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index b45685845..e5469d9f9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -71,7 +71,6 @@ Q_DECL_EXPORT #endif int main(int argc, char *argv[]) { - QIcon::setFallbackThemeName("breeze"); QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QNetworkProxyFactory::setUseSystemConfiguration(true); @@ -80,6 +79,7 @@ int main(int argc, char *argv[]) QGuiApplication app(argc, argv); QQuickStyle::setStyle(QStringLiteral("org.kde.breeze")); #else + QIcon::setFallbackThemeName("breeze"); QApplication app(argc, argv); // Default to org.kde.desktop style unless the user forces another style if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {