tests: Fix Qt6 qtquick tests regarding mouse grabbing not working

QtQuick tests don't work well if run after the QtWidget ones,
so change order.
This commit is contained in:
Sergio Martins
2022-06-11 00:24:42 +01:00
parent 3662f30ea4
commit e34b4c4d09

View File

@@ -132,13 +132,14 @@ std::vector<KDDockWidgets::FrontendType> 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;
}