We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c77a5a commit 19d1659Copy full SHA for 19d1659
Sources/Rendering/Core/RenderWindowInteractor/index.js
@@ -64,6 +64,9 @@ function vtkRenderWindowInteractor(publicAPI, model) {
64
// Set our className
65
model.classHierarchy.push('vtkRenderWindowInteractor');
66
67
+ // Initialize list of requesters
68
+ model.animationRequesters = new Set();
69
+
70
// Public API methods
71
72
//----------------------------------------------------------------------
@@ -868,7 +871,7 @@ const DEFAULT_VALUES = {
868
871
recognizeGestures: true,
869
872
currentGesture: 'Start',
870
873
animationRequest: null,
- animationRequesters: new Set(),
874
+ animationRequesters: null,
875
lastFrameTime: 0.1,
876
wheelTimeoutID: 0,
877
moveTimeoutID: 0,
0 commit comments