소스 검색

Fix flickering mouse tracking when using two touches on mobile (#1390)

Roxana Chiorean 5 년 전
부모
커밋
d902bbd618
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/components/App.tsx

+ 2 - 0
src/components/App.tsx

@@ -2574,6 +2574,8 @@ export class App extends React.Component<any, AppState> {
       return;
     }
     this.portal.socket &&
+      // do not broadcast when more than 1 pointer since that shows flickering on the other side
+      gesture.pointers.size < 2 &&
       this.broadcastMouseLocation({
         pointerCoords,
         button,