diff --git a/Telegram/SourceFiles/boxes/stickers_box.cpp b/Telegram/SourceFiles/boxes/stickers_box.cpp index 763ef4101a..6d4ac95e73 100644 --- a/Telegram/SourceFiles/boxes/stickers_box.cpp +++ b/Telegram/SourceFiles/boxes/stickers_box.cpp @@ -547,7 +547,9 @@ void StickersBox::prepare() { } setNoContentMargin(true); _tabs->sectionActivated( - ) | rpl::start_with_next( + ) | rpl::filter([=] { + return !_ignoreTabActivation; + }) | rpl::start_with_next( [this] { switchTab(); }, lifetime()); refreshTabs(); @@ -665,12 +667,16 @@ void StickersBox::refreshTabs() { || (_tab == &_featured && !_tabIndices.contains(Section::Featured)) || (_tab == &_masks && !_tabIndices.contains(Section::Masks))) { switchTab(); - } else if (_tab == &_archived) { - _tabs->setActiveSectionFast(_tabIndices.indexOf(Section::Archived)); - } else if (_tab == &_featured) { - _tabs->setActiveSectionFast(_tabIndices.indexOf(Section::Featured)); - } else if (_tab == &_masks) { - _tabs->setActiveSectionFast(_tabIndices.indexOf(Section::Masks)); + } else { + _ignoreTabActivation = true; + _tabs->setActiveSectionFast(_tabIndices.indexOf((_tab == &_archived) + ? Section::Archived + : (_tab == &_featured) + ? Section::Featured + : (_tab == &_masks) + ? Section::Masks + : Section::Installed)); + _ignoreTabActivation = false; } updateTabsGeometry(); } diff --git a/Telegram/SourceFiles/boxes/stickers_box.h b/Telegram/SourceFiles/boxes/stickers_box.h index 29c06b8f17..cde86ec278 100644 --- a/Telegram/SourceFiles/boxes/stickers_box.h +++ b/Telegram/SourceFiles/boxes/stickers_box.h @@ -143,6 +143,7 @@ private: object_ptr _tabs = { nullptr }; QList
_tabIndices; + bool _ignoreTabActivation = false; class CounterWidget; object_ptr _unreadBadge = { nullptr };