forked from pool/libqt5-qtbase
17 lines
992 B
Diff
17 lines
992 B
Diff
|
--- a/src/platformsupport/themes/genericunix/qgenericunixthemes.cpp
|
||
|
+++ b/src/platformsupport/themes/genericunix/qgenericunixthemes.cpp
|
||
|
@@ -766,9 +766,11 @@ QStringList QGenericUnixTheme::themeName
|
||
|
result.push_back(QLatin1String(QKdeTheme::name));
|
||
|
#endif
|
||
|
} else if (gtkBasedEnvironments.contains(desktopName)) {
|
||
|
- // prefer the GTK3 theme implementation with native dialogs etc.
|
||
|
+ // prefer the GTK+2 theme implementation with the native style, etc.
|
||
|
+ result.push_back(QStringLiteral("gtk2"));
|
||
|
+ // prefer second the GTK+3 theme implementation with native dialogs, etc.
|
||
|
result.push_back(QStringLiteral("gtk3"));
|
||
|
- // fallback to the generic Gnome theme if loading the GTK3 theme fails
|
||
|
+ // fallback to the generic GNOME theme if loading the GTK+3 theme fails
|
||
|
result.push_back(QLatin1String(QGnomeTheme::name));
|
||
|
}
|
||
|
}
|