From f11c76d06b8b5ebf070cddb0f63a17a281c0e7fe Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 24 Apr 2017 18:59:54 +0300 Subject: [PATCH] Show featured sticker sets when no sets installed. --- Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp index 85049a9c8..4c49986f2 100644 --- a/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/stickers_list_widget.cpp @@ -1010,7 +1010,7 @@ void StickersListWidget::processPanelHideFinished() { clearInstalledLocally(); // Reset to the recent stickers section. - if (_section == Section::Featured) { + if (_section == Section::Featured && (!_footer || !_footer->hasOnlyFeaturedSets())) { _section = Section::Stickers; validateSelectedIcon(ValidateIconAnimations::None); } @@ -1105,6 +1105,9 @@ void StickersListWidget::refreshRecent() { if (_section == Section::Stickers) { refreshRecentStickers(); } + if (_footer && _footer->hasOnlyFeaturedSets() && _section != Section::Featured) { + showStickerSet(Stickers::FeaturedSetId); + } } void StickersListWidget::refreshRecentStickers(bool performResize) {