Switch to breeze style on android

This commit is contained in:
Bart De Vries 2023-03-13 14:10:55 +01:00
parent b600110978
commit e45dd71c83
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ int main(int argc, char *argv[])
QGuiApplication app(argc, argv); QGuiApplication app(argc, argv);
qInstallMessageHandler(myMessageHandler); qInstallMessageHandler(myMessageHandler);
QLoggingCategory::setFilterRules(QStringLiteral("org.kde.*=true")); QLoggingCategory::setFilterRules(QStringLiteral("org.kde.*=true"));
QQuickStyle::setStyle(QStringLiteral("Material")); QQuickStyle::setStyle(QStringLiteral("org.kde.breeze"));
#else #else
QApplication app(argc, argv); QApplication app(argc, argv);
if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) { if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {