Fix displaying date on message input resize

This commit is contained in:
Eduard Kuzmenko 2022-04-04 16:45:11 +03:00
parent ca7d204400
commit 3e3668c8a3

View File

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