mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
correct ascii fallback
This commit is contained in:
parent
9c23a5feef
commit
c92b6dbd0b
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ class Scene(object):
|
|||
times,
|
||||
total=n_iterations,
|
||||
leave=self.leave_progress_bars,
|
||||
ascii=False if platform.system() != 'Windows' else True
|
||||
ascii=True if platform.system() == 'Windows' else None
|
||||
)
|
||||
return time_progression
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue