Fix displaying date on message input resize

This commit is contained in:
Eduard Kuzmenko 2022-04-04 16:45:11 +03:00
parent dbb76eeeb2
commit 609b84b062

View File

@ -906,7 +906,7 @@ export default class ChatBubbles {
} */
if(part) {
this.scrollable.scrollTop += Math.round(part);
this.scrollable.setScrollTopSilently(this.scrollable.scrollTop + Math.round(part));
}
wasHeight = height;
@ -975,7 +975,7 @@ export default class ChatBubbles {
if(diff) {
const needScrollTop = this.scrollable.scrollTop + diff;
this.scrollable.scrollTop = needScrollTop;
this.scrollable.setScrollTopSilently(needScrollTop);
}
setEndRAF(false);