You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In QGnomePlatformTheme::QGnomePlatformTheme, there's the following code:
// if the user has explicitly set something else, don't meddle
// Also ignore the default Fusion style
if (!QQuickStyle::name().isEmpty() && QQuickStyle::name() != QLatin1String("Fusion")) {
return;
}
This seems a little rude; it means that if I'm developing an application that relies on that style (which is how this originally bit me), I'm not able to use it while also using QGnomePlatform.
Wouldn't it be better to do something like recommend that QT_QUICK_CONTROLS_STYLE=org.kde.desktop be set in the environment when packaging QGnomePlatform (and also that a dependency, or at least a recommended dependency, be added)?