mirror of https://github.com/procxx/kepka.git
Switch add member and search members buttons.
This commit is contained in:
parent
a05c7a815a
commit
3992ff6b59
|
@ -135,13 +135,6 @@ void Members::setupButtons() {
|
||||||
|
|
||||||
auto addMemberShown = CanAddMemberValue(_peer)
|
auto addMemberShown = CanAddMemberValue(_peer)
|
||||||
| rpl::start_spawning(lifetime());
|
| 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->showOn(rpl::duplicate(addMemberShown));
|
||||||
_addMember->addClickHandler([this] { // TODO throttle(ripple duration)
|
_addMember->addClickHandler([this] { // TODO throttle(ripple duration)
|
||||||
this->addMember();
|
this->addMember();
|
||||||
|
@ -221,9 +214,6 @@ object_ptr<Members::ListWidget> Members::setupList(
|
||||||
int Members::resizeGetHeight(int newWidth) {
|
int Members::resizeGetHeight(int newWidth) {
|
||||||
auto availableWidth = newWidth
|
auto availableWidth = newWidth
|
||||||
- st::infoMembersButtonPosition.x();
|
- st::infoMembersButtonPosition.x();
|
||||||
if (!_addMember->isHidden()) {
|
|
||||||
availableWidth -= st::infoMembersAddMember.width;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto cancelLeft = availableWidth - _cancelSearch->width();
|
auto cancelLeft = availableWidth - _cancelSearch->width();
|
||||||
_cancelSearch->moveToLeft(
|
_cancelSearch->moveToLeft(
|
||||||
|
@ -242,6 +232,14 @@ int Members::resizeGetHeight(int newWidth) {
|
||||||
searchCurrentLeft,
|
searchCurrentLeft,
|
||||||
st::infoMembersButtonPosition.y());
|
st::infoMembersButtonPosition.y());
|
||||||
|
|
||||||
|
if (!_search->isHidden()) {
|
||||||
|
availableWidth -= st::infoMembersSearch.width;
|
||||||
|
}
|
||||||
|
_addMember->moveToLeft(
|
||||||
|
availableWidth - _addMember->width(),
|
||||||
|
st::infoMembersButtonPosition.y(),
|
||||||
|
newWidth);
|
||||||
|
|
||||||
auto fieldLeft = anim::interpolate(
|
auto fieldLeft = anim::interpolate(
|
||||||
cancelLeft,
|
cancelLeft,
|
||||||
st::infoBlockHeaderPosition.x(),
|
st::infoBlockHeaderPosition.x(),
|
||||||
|
|
Loading…
Reference in New Issue