diff options
| author | historia <historiavg@proton.me> | 2026-08-25 01:52:43 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-25 01:52:43 -0400 |
| commit | d6460459ee95d8c2298b029fa4b2dc266e80a0cc (patch) | |
| tree | c7affc0f5a7fe17abcc65697d43040663d1cd719 | |
| parent | a76896ec7ce60baaefcf5dd8062776be01dbc57a (diff) | |
| download | tts-audiobook-generator-d6460459ee95d8c2298b029fa4b2dc266e80a0cc.tar.gz | |
fix: trailing space in build animation
| -rw-r--r-- | app/ui/taskview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/ui/taskview.py b/app/ui/taskview.py index c0977ff..65237af 100644 --- a/app/ui/taskview.py +++ b/app/ui/taskview.py @@ -411,7 +411,7 @@ class TaskView: return "[ ]", "dim" if index == self.current: frame = _SPINNER[int(self._now() * 4) % len(_SPINNER)] - return f"[{frame} ]", "warn" + return f"[{frame}]", "warn" if self.results[index] == 0: return "[OK]", "ok" if self.results[index] is not None: |
