Fix _historyDown button position.

This button is a child widget of _scroll so the position is relative.
This commit is contained in:
John Preston 2017-06-08 07:50:22 +03:00
parent 0e4b057220
commit 972fdb5c76
1 changed files with 5 additions and 1 deletions

View File

@ -4953,7 +4953,10 @@ void HistoryWidget::updateHistoryGeometry(bool initial, bool loadedDown, const S
}
_fieldAutocomplete->setBoundings(_scroll->geometry());
_historyDown->moveToRight(st::historyToDownPosition.x(), _scroll->y() + _scroll->height() - _historyDown->height() - st::historyToDownPosition.y());
if (!_historyDownShown.animating()) {
// _historyDown is a child widget of _scroll, not me.
_historyDown->moveToRight(st::historyToDownPosition.x(), _scroll->height() - _historyDown->height() - st::historyToDownPosition.y());
}
controller()->floatPlayerAreaUpdated().notify(true);
}
@ -5143,6 +5146,7 @@ void HistoryWidget::updateBotKeyboard(History *h, bool force) {
}
void HistoryWidget::updateHistoryDownPosition() {
// _historyDown is a child widget of _scroll, not me.
auto top = anim::interpolate(0, _historyDown->height() + st::historyToDownPosition.y(), _historyDownShown.current(_historyDownIsShown ? 1. : 0.));
_historyDown->moveToRight(st::historyToDownPosition.x(), _scroll->height() - top);
auto shouldBeHidden = !_historyDownIsShown && !_historyDownShown.animating();