2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 22:46:10 +00:00

Reuse global emoji large images.

This commit is contained in:
John Preston
2019-08-05 15:08:20 +01:00
parent e479daca03
commit 1b1b1780db
7 changed files with 98 additions and 24 deletions

View File

@@ -481,6 +481,10 @@ bool Settings::largeEmoji() const {
return _variables.largeEmoji.current();
}
rpl::producer<bool> Settings::largeEmojiValue() const {
return _variables.largeEmoji.value();
}
rpl::producer<bool> Settings::largeEmojiChanges() const {
return _variables.largeEmoji.changes();
}