diff --git a/src/Platform.cpp b/src/Platform.cpp index 7d29e7af..f019382f 100644 --- a/src/Platform.cpp +++ b/src/Platform.cpp @@ -132,13 +132,14 @@ std::vector Platform::frontendTypes() #endif -#ifdef KDDW_FRONTEND_QTWIDGETS - types.push_back(FrontendType::QtWidgets); -#endif #ifdef KDDW_FRONTEND_QTQUICK types.push_back(FrontendType::QtQuick); #endif +#ifdef KDDW_FRONTEND_QTWIDGETS + types.push_back(FrontendType::QtWidgets); +#endif + return types; }