Change default width from 80 to 120.

This commit is contained in:
voussoir 2025-11-08 11:46:24 -08:00
parent 306060031c
commit 74cd6f3641

View file

@ -129,7 +129,7 @@ class Bar1(Progress):
if width is WIDTH_AUTO:
self.width = shutil.get_terminal_size().columns - 2
self.width = min(80, self.width)
self.width = min(120, self.width)
else:
self.width = width