mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +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,
|
times,
|
||||||
total=n_iterations,
|
total=n_iterations,
|
||||||
leave=self.leave_progress_bars,
|
leave=self.leave_progress_bars,
|
||||||
ascii=False if platform.system() != 'Windows' else True
|
ascii=True if platform.system() == 'Windows' else None
|
||||||
)
|
)
|
||||||
return time_progression
|
return time_progression
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue