diff --git a/kcms/style/gtkthemesmodel.cpp b/kcms/style/gtkthemesmodel.cpp --- a/kcms/style/gtkthemesmodel.cpp +++ b/kcms/style/gtkthemesmodel.cpp @@ -60,6 +60,14 @@ // If the directory contains any of gtk-3.X folders, it is the GTK3 theme for sure QDir possibleThemeDirectory(possibleThemePath); if (!possibleThemeDirectory.entryList(gtk3SubdirPattern, QDir::Dirs).isEmpty()) { + + // Do not show dark Breeze GTK variant, since the colors of it + // are coming from the color scheme and selecting them here + // is redundant and does not work + if (possibleThemeDirectory.dirName() == QStringLiteral("Breeze-Dark")) { + continue; + } + gtk3ThemesNames.insert(possibleThemeDirectory.dirName(), possibleThemeDirectory.path()); } }