# Rotating view is too fast

**URL:** https://discourse.slicer.org/t/rotating-view-is-too-fast/32510
**Category:** Support
**Created:** [October 31, 2023, 5:17pm UTC](https://discourse.slicer.org/t/rotating-view-is-too-fast/32510 "2023-10-31T17:17:33Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![mohammed\_alshakhas](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/mohammed_alshakhas/32/10025_2.png) [@mohammed\_alshakhas](https://discourse.slicer.org/u/mohammed_alshakhas)
#### Post date: [October 31, 2023, 5:17pm UTC](https://discourse.slicer.org/t/rotating-view-is-too-fast/32510/1 "2023-10-31T17:17:33Z")

</div>

the rotating view is too fast, no idea why I didn’t select anything different this time

---

<div class="post-metadata">

### Author: ![lassoan](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.slicer.org/lassoan/32/13_2.png) [@lassoan](https://discourse.slicer.org/u/lassoan)
#### Post date: [October 31, 2023, 7:32pm UTC](https://discourse.slicer.org/t/rotating-view-is-too-fast/32510/2 "2023-10-31T19:32:20Z")

</div>

It looks like you (or some module that you used) reconfigured your view animation settings. You can revert to defaults like this:

```python
viewWidget = slicer.app.layoutManager().threeDWidget(0).viewWidget()
viewWidget.animationIntervalMs = 5
viewWidget.spinIncrement = 2

```

These view properties are not stored persistently, so you another option to reset them is to save the scene, restart Slicer, and load the scene.
