2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-01 07:05:13 +00:00

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

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;
}