2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Fixed title of favorite stickers in touchbar.

This commit is contained in:
23rd
2019-06-20 22:42:37 +03:00
committed by John Preston
parent c7526ae1cd
commit 7489f2297f
2 changed files with 4 additions and 1 deletions

View File

@@ -326,7 +326,8 @@ void AppendFavedStickers(std::vector<PickerScrubberItem> &to) {
if (!count) {
return;
}
to.emplace_back(PickerScrubberItem(it->title));
to.emplace_back(PickerScrubberItem(
tr::lng_mac_touchbar_favorite_stickers(tr::now)));
for (const auto document : it->stickers) {
to.emplace_back(PickerScrubberItem(document));
}