Added ability to go to top of media panel by clicking on selected tab.

This commit is contained in:
23rd 2019-03-26 08:40:22 +03:00 committed by John Preston
parent 84e9e37353
commit 3fa3428b4b
3 changed files with 4 additions and 4 deletions

View file

@ -436,6 +436,7 @@ void StickersBox::switchTab() {
requestArchivedSets();
}
if (_tab == newTab) {
onScrollToY(0);
return;
}

View file

@ -782,6 +782,7 @@ void TabbedSelector::switchTab() {
Assert(tab >= 0 && tab < Tab::kCount);
auto newTabType = static_cast<SelectorTab>(tab);
if (_currentTabType == newTabType) {
_scroll->scrollToY(0);
return;
}

View file

@ -17,10 +17,8 @@ DiscreteSlider::DiscreteSlider(QWidget *parent) : RpWidget(parent) {
}
void DiscreteSlider::setActiveSection(int index) {
if (_activeIndex != index) {
_activeIndex = index;
activateCallback();
}
_activeIndex = index;
activateCallback();
setSelectedSection(index);
}