Change default width from 80 to 120.
This commit is contained in:
parent
306060031c
commit
74cd6f3641
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ class Bar1(Progress):
|
||||||
|
|
||||||
if width is WIDTH_AUTO:
|
if width is WIDTH_AUTO:
|
||||||
self.width = shutil.get_terminal_size().columns - 2
|
self.width = shutil.get_terminal_size().columns - 2
|
||||||
self.width = min(80, self.width)
|
self.width = min(120, self.width)
|
||||||
else:
|
else:
|
||||||
self.width = width
|
self.width = width
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue