mirror of https://github.com/procxx/kepka.git
Fix crash in lottie animation destroy-on-init.
This commit is contained in:
parent
14aa455164
commit
07eab8555a
|
@ -5106,6 +5106,8 @@ int HistoryWidget::countInitialScrollTop() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::createUnreadBarIfBelowVisibleArea(int withScrollTop) {
|
void HistoryWidget::createUnreadBarIfBelowVisibleArea(int withScrollTop) {
|
||||||
|
Expects(_history != nullptr);
|
||||||
|
|
||||||
if (_history->unreadBar()) {
|
if (_history->unreadBar()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -5227,7 +5229,7 @@ void HistoryWidget::updateHistoryGeometry(
|
||||||
newScrollTop = countInitialScrollTop();
|
newScrollTop = countInitialScrollTop();
|
||||||
_historyInited = true;
|
_historyInited = true;
|
||||||
_scrollToAnimation.stop();
|
_scrollToAnimation.stop();
|
||||||
} else if (wasAtBottom && !loadedDown) {
|
} else if (wasAtBottom && !loadedDown && !_history->unreadBar()) {
|
||||||
newScrollTop = countAutomaticScrollTop();
|
newScrollTop = countAutomaticScrollTop();
|
||||||
} else {
|
} else {
|
||||||
newScrollTop = std::min(
|
newScrollTop = std::min(
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 17b6a6d53252b3e3ff02b113e352c152bd697896
|
Subproject commit 0f6c9f4acbdc2412a1a941b4ee96b150589b8369
|
Loading…
Reference in New Issue