@@ -384,17 +384,17 @@ function vtkRenderWindowInteractor(publicAPI, model) {
384
384
if ( pointerCache . has ( event . pointerId ) ) {
385
385
const pointer = pointerCache . get ( event . pointerId ) ;
386
386
pointer . position = getScreenEventPositionFor ( event ) ;
387
+ }
387
388
388
- switch ( event . pointerType ) {
389
- case 'pen' :
390
- case 'touch' :
391
- publicAPI . handleTouchMove ( event ) ;
392
- break ;
393
- case 'mouse' :
394
- default :
395
- publicAPI . handleMouseMove ( event ) ;
396
- break ;
397
- }
389
+ switch ( event . pointerType ) {
390
+ case 'pen' :
391
+ case 'touch' :
392
+ publicAPI . handleTouchMove ( event ) ;
393
+ break ;
394
+ case 'mouse' :
395
+ default :
396
+ publicAPI . handleMouseMove ( event ) ;
397
+ break ;
398
398
}
399
399
} ;
400
400
@@ -728,7 +728,7 @@ function vtkRenderWindowInteractor(publicAPI, model) {
728
728
}
729
729
// handle the gesture
730
730
publicAPI . recognizeGesture ( 'TouchStart' , positions ) ;
731
- } else {
731
+ } else if ( pointers . length === 1 ) {
732
732
const callData = {
733
733
...getModifierKeysFor ( EMPTY_MOUSE_EVENT ) ,
734
734
position : getScreenEventPositionFor ( event ) ,
@@ -743,7 +743,7 @@ function vtkRenderWindowInteractor(publicAPI, model) {
743
743
if ( model . recognizeGestures && pointers . length > 1 ) {
744
744
const positions = pointerCacheToPositions ( pointerCache ) ;
745
745
publicAPI . recognizeGesture ( 'TouchMove' , positions ) ;
746
- } else {
746
+ } else if ( pointers . length === 1 ) {
747
747
const callData = {
748
748
...getModifierKeysFor ( EMPTY_MOUSE_EVENT ) ,
749
749
position : pointers [ 0 ] . position ,
@@ -780,7 +780,7 @@ function vtkRenderWindowInteractor(publicAPI, model) {
780
780
const positions = pointerCacheToPositions ( pointerCache ) ;
781
781
publicAPI . recognizeGesture ( 'TouchMove' , positions ) ;
782
782
}
783
- } else {
783
+ } else if ( pointers . length === 1 ) {
784
784
const callData = {
785
785
...getModifierKeysFor ( EMPTY_MOUSE_EVENT ) ,
786
786
position : pointers [ 0 ] . position ,
0 commit comments