Switch add member and search members buttons.

This commit is contained in:
John Preston 2017-11-06 13:09:52 +04:00
parent a05c7a815a
commit 3992ff6b59
1 changed files with 8 additions and 10 deletions

View File

@ -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::ListWidget> 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(),