2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 14:38:15 +00:00

Show sticker effects in a StickerListWidget.

This commit is contained in:
John Preston
2024-05-12 12:49:28 +04:00
parent 5fb7992b04
commit b92a05011f
8 changed files with 163 additions and 34 deletions

View File

@@ -249,6 +249,9 @@ PossibleItemReactions::PossibleItemReactions(
: recent(other.recent | ranges::views::transform([](const auto &value) {
return *value;
}) | ranges::to_vector)
, stickers(other.stickers | ranges::views::transform([](const auto &value) {
return *value;
}) | ranges::to_vector)
, customAllowed(other.customAllowed)
, tags(other.tags){
}