Detect more dark themes on Linux

This commit is contained in:
Ilya Fedin 2020-11-23 10:11:52 +04:00 committed by John Preston
parent f88c132c96
commit cffb05e3c9
1 changed files with 1 additions and 1 deletions

View File

@ -835,7 +835,7 @@ std::optional<bool> IsDarkMode() {
const auto themeName = Libs::GtkSetting("gtk-theme-name").toLower();
if (themeName.endsWith(qsl("-dark"))) {
if (themeName.contains(qsl("-dark"))) {
return true;
}