فهرست منبع

Re-run off-screen classification after scroll animation completes

Yuki Takei 1 ماه پیش
والد
کامیت
320a7acbc0
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      packages/editor/src/client/stores/use-collaborative-editor-mode.ts

+ 2 - 0
packages/editor/src/client/stores/use-collaborative-editor-mode.ts

@@ -72,6 +72,8 @@ export const createScrollToRemoteCursorFn = (
 
     setTimeout(() => {
       scrollDOM.style.scrollBehavior = prevBehavior;
+      // Re-run off-screen classification after scroll animation completes
+      view.dispatch({});
     }, 500);
   };
 };