fix(tui): restore snappy sweep/progress animation frame rate (#759)

Co-authored-by: Ahmed Allam <ahmed39652003@gmail.com>
This commit is contained in:
devin-ai-integration[bot]
2026-07-13 14:21:28 -07:00
committed by GitHub
co-authored by Ahmed Allam
parent b7a1259593
commit 993fd41f32
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1359,7 +1359,7 @@ class StrixTUIApp(App): # type: ignore[misc]
def _start_dot_animation(self) -> None:
if self._dot_animation_timer is None:
self._dot_animation_timer = self.set_interval(0.25, self._animate_dots)
self._dot_animation_timer = self.set_interval(0.06, self._animate_dots)
def _stop_dot_animation(self) -> None:
if self._dot_animation_timer is not None: