From be59d7d5f1ec8eb4f715354eec5de29cdb8a2c6b Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Fri, 19 Jan 2018 15:16:03 +0100 Subject: [PATCH] feat(AppController): force default theme style (cherry picked from commit 83a307e337958b2b7f67921b0440574698d8e18e) --- src/app/AppController.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/AppController.cpp b/src/app/AppController.cpp index 7453b3e6f..775ff72c1 100644 --- a/src/app/AppController.cpp +++ b/src/app/AppController.cpp @@ -23,6 +23,7 @@ #include #include #include +#include #include "gitversion.h" @@ -83,6 +84,7 @@ AppController::AppController (int &argc, char *argv[]) { QCoreApplication::setApplicationVersion(APPLICATION_VERSION); mApp = new App(argc, argv); + QQuickStyle::setStyle("Default"); if (mApp->isSecondary()) { QString command = mApp->getCommandArgument(); mApp->sendMessage(command.isEmpty() ? "show" : command.toLocal8Bit(), -1);