Added applying of chat theme from custom themes list.

This commit is contained in:
23rd
2026-07-03 21:06:29 +03:00
committed by John Preston
parent 4b3e2646a6
commit 5115314726
3 changed files with 97 additions and 31 deletions
@@ -481,7 +481,7 @@ void CloudThemes::parseThemes(const QVector<MTPTheme> &list) {
_list.clear();
_list.reserve(list.size());
for (const auto &theme : list) {
_list.push_back(CloudTheme::Parse(_session, theme));
_list.push_back(CloudTheme::Parse(_session, theme, true));
}
checkCurrentTheme();
}