2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-02 07:35:12 +00:00

Added sticker picker to touchbar.

This commit is contained in:
23rd
2019-06-12 22:49:28 +03:00
committed by John Preston
parent a4d83b679a
commit dcba07b9b7
6 changed files with 394 additions and 38 deletions

View File

@@ -1397,6 +1397,14 @@ rpl::producer<> Session::stickersUpdated() const {
return _stickersUpdated.events();
}
void Session::notifyRecentStickersUpdated() {
_recentStickersUpdated.fire({});
}
rpl::producer<> Session::recentStickersUpdated() const {
return _recentStickersUpdated.events();
}
void Session::notifySavedGifsUpdated() {
_savedGifsUpdated.fire({});
}