mirror of https://github.com/procxx/kepka.git
Update floating player position.
This commit is contained in:
parent
18195f9c4e
commit
03aeaadd5b
|
@ -3094,7 +3094,11 @@ void DialogsWidget::updateControlsGeometry() {
|
||||||
_updateTelegram->setGeometry(0, height() - updateHeight, width(), updateHeight);
|
_updateTelegram->setGeometry(0, height() - updateHeight, width(), updateHeight);
|
||||||
scrollHeight -= updateHeight;
|
scrollHeight -= updateHeight;
|
||||||
}
|
}
|
||||||
|
auto wasScrollHeight = _scroll->height();
|
||||||
_scroll->setGeometry(0, scrollTop, width(), scrollHeight);
|
_scroll->setGeometry(0, scrollTop, width(), scrollHeight);
|
||||||
|
if (scrollHeight != wasScrollHeight) {
|
||||||
|
controller()->floatPlayerAreaUpdated().notify(true);
|
||||||
|
}
|
||||||
if (addToScroll) {
|
if (addToScroll) {
|
||||||
_scroll->scrollToY(newScrollTop);
|
_scroll->scrollToY(newScrollTop);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -4789,6 +4789,8 @@ void HistoryWidget::updateListSize(bool initial, bool loadedDown, const ScrollCh
|
||||||
|
|
||||||
_fieldAutocomplete->setBoundings(_scroll->geometry());
|
_fieldAutocomplete->setBoundings(_scroll->geometry());
|
||||||
_historyDown->moveToRight(st::historyToDownPosition.x(), _scroll->y() + _scroll->height() - _historyDown->height() - st::historyToDownPosition.y());
|
_historyDown->moveToRight(st::historyToDownPosition.x(), _scroll->y() + _scroll->height() - _historyDown->height() - st::historyToDownPosition.y());
|
||||||
|
|
||||||
|
controller()->floatPlayerAreaUpdated().notify(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
_list->recountHeight();
|
_list->recountHeight();
|
||||||
|
|
|
@ -292,6 +292,7 @@ void MainWidget::checkFloatPlayerVisibility() {
|
||||||
instance->hiddenByHistory = true;
|
instance->hiddenByHistory = true;
|
||||||
}
|
}
|
||||||
toggleFloatPlayer(instance);
|
toggleFloatPlayer(instance);
|
||||||
|
updateFloatPlayerPosition(instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::updateFloatPlayerPosition(Float *instance) {
|
void MainWidget::updateFloatPlayerPosition(Float *instance) {
|
||||||
|
|
Loading…
Reference in New Issue