Skip to content

Commit e5966a1

Browse files
committed
fix(WidgetManager): incorrect render codepath
1 parent 0c9b871 commit e5966a1

File tree

1 file changed

+4
-3
lines changed
  • Sources/Widgets/Core/WidgetManager

1 file changed

+4
-3
lines changed

Sources/Widgets/Core/WidgetManager/index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,10 @@ function vtkWidgetManager(publicAPI, model) {
299299
w.deactivateAllHandles();
300300
}
301301
}
302-
if (wantRender) {
303-
model._interactor.render();
304-
}
302+
}
303+
304+
if (wantRender) {
305+
model._interactor.render();
305306
}
306307
}
307308

0 commit comments

Comments
 (0)