From 302c980fdb98d8b9dbdcbd4e7f50b8eed92110fd Mon Sep 17 00:00:00 2001 From: "P.L. Lucas" Date: Wed, 24 Apr 2019 09:22:19 +0200 Subject: [PATCH] lxqt-config-appearance: Insert default GTK3 themes. --- lxqt-config-appearance/configothertoolkits.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lxqt-config-appearance/configothertoolkits.cpp b/lxqt-config-appearance/configothertoolkits.cpp index c38f0364d..590e8d297 100644 --- a/lxqt-config-appearance/configothertoolkits.cpp +++ b/lxqt-config-appearance/configothertoolkits.cpp @@ -230,6 +230,11 @@ QStringList ConfigOtherToolKits::getGTKThemes(QString version) { QStringList themeList; QString configFile = version=="2.0" ? "gtkrc" : "gtk.css"; + + if(version != "2.0") { + // Insert default GTK3 themes: + themeList << "Adwaita" << "HighContrast" << "HighContrastInverse"; + } QStringList dataPaths = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation); for(QString dataPath : dataPaths) {