This commit is contained in:
tamaina 2023-07-17 09:58:31 +00:00
parent 78944bf441
commit 5a5ef7564a
1 changed files with 2 additions and 3 deletions

View File

@ -239,15 +239,14 @@ watch([$$(weakBacked), $$(contentEl)], () => {
*/
function adjustScroll(fn: () => void): Promise<void> {
const oldHeight = scrollableElement ? scrollableElement.scrollHeight : getBodyScrollHeight();
const oldScroll = scrollableElement ? scrollableElement.scrollTop : window.scrollY;
denyMoveTransition.value = true;
fn();
return nextTick(() => {
const diff = (scrollableElement ? scrollableElement.scrollHeight : getBodyScrollHeight()) - oldHeight;
const newScroll = scrollableElement ? scrollableElement.scrollTop : window.scrollY;
const top = newScroll + diff;
const top = oldScroll + ((scrollableElement ? scrollableElement.scrollHeight : getBodyScrollHeight()) - oldHeight);
scroll(scrollableElement, { top, behavior: 'instant' });
denyMoveTransition.value = false;