diff --git a/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp b/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp index bf1cccf5d..3b4152de7 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp +++ b/Telegram/SourceFiles/info/profile/info_profile_inner_widget.cpp @@ -319,7 +319,7 @@ object_ptr InnerWidget::setupSharedMedia( rpl::combine( tracker.atLeastOneShownValue(), _controller->wrapValue(), - _isStackBottom.events()) + _isStackBottom.value()) | rpl::combine_previous(ToggledData()) | rpl::start_with_next([wrap = result.data()]( const ToggledData &was, @@ -333,7 +333,7 @@ object_ptr InnerWidget::setupSharedMedia( //auto [nowOneShown, nowWrap, nowStackBottom] = now; wrap->toggle( nowOneShown && (nowWrap != Wrap::Side || !nowStackBottom), - (wasOneShown == nowOneShown && wasWrap == nowWrap) + (wasStackBottom == nowStackBottom && wasWrap == nowWrap) ? anim::type::normal : anim::type::instant); }, result->lifetime()); diff --git a/Telegram/SourceFiles/info/profile/info_profile_inner_widget.h b/Telegram/SourceFiles/info/profile/info_profile_inner_widget.h index 2daf3e836..a3df65a65 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_inner_widget.h +++ b/Telegram/SourceFiles/info/profile/info_profile_inner_widget.h @@ -20,7 +20,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org */ #pragma once -#include +#include #include "ui/rp_widget.h" namespace Window { @@ -55,7 +55,7 @@ public: void restoreState(not_null memento); void setIsStackBottom(bool isStackBottom) { - _isStackBottom.fire_copy(isStackBottom); + _isStackBottom = isStackBottom; } rpl::producer scrollToRequests() const { return _scrollToRequests.events(); @@ -94,7 +94,7 @@ private: bool canHideDetailsEver() const; rpl::producer canHideDetails() const; - rpl::event_stream _isStackBottom; + rpl::variable _isStackBottom = true; const not_null _controller; const not_null _peer;