diff --git a/Telegram/SourceFiles/info/profile/info_profile_members.cpp b/Telegram/SourceFiles/info/profile/info_profile_members.cpp index d6414eec9..88f0eeb05 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_members.cpp +++ b/Telegram/SourceFiles/info/profile/info_profile_members.cpp @@ -135,13 +135,6 @@ void Members::setupButtons() { auto addMemberShown = CanAddMemberValue(_peer) | rpl::start_spawning(lifetime()); - widthValue() - | rpl::start_with_next([button = _addMember.data()](int newWidth) { - button->moveToRight( - st::infoMembersButtonPosition.x(), - st::infoMembersButtonPosition.y(), - newWidth); - }, _addMember->lifetime()); _addMember->showOn(rpl::duplicate(addMemberShown)); _addMember->addClickHandler([this] { // TODO throttle(ripple duration) this->addMember(); @@ -221,9 +214,6 @@ object_ptr Members::setupList( int Members::resizeGetHeight(int newWidth) { auto availableWidth = newWidth - st::infoMembersButtonPosition.x(); - if (!_addMember->isHidden()) { - availableWidth -= st::infoMembersAddMember.width; - } auto cancelLeft = availableWidth - _cancelSearch->width(); _cancelSearch->moveToLeft( @@ -242,6 +232,14 @@ int Members::resizeGetHeight(int newWidth) { searchCurrentLeft, st::infoMembersButtonPosition.y()); + if (!_search->isHidden()) { + availableWidth -= st::infoMembersSearch.width; + } + _addMember->moveToLeft( + availableWidth - _addMember->width(), + st::infoMembersButtonPosition.y(), + newWidth); + auto fieldLeft = anim::interpolate( cancelLeft, st::infoBlockHeaderPosition.x(),