forked from DRMTalks/devine
Remove spacer from Spinner of progress bars
This commit is contained in:
parent
a8c1612eb5
commit
6419c27e0a
|
@ -798,7 +798,7 @@ class dl:
|
|||
if isinstance(title, (Movie, Episode)):
|
||||
multiplexing_progress = Progress(
|
||||
TextColumn("[progress.description]{task.description}"),
|
||||
SpinnerColumn(),
|
||||
SpinnerColumn(finished_text=""),
|
||||
BarColumn(),
|
||||
"•",
|
||||
TimeRemainingColumn(compact=True, elapsed_when_finished=True),
|
||||
|
|
|
@ -107,7 +107,7 @@ class Tracks:
|
|||
for track in tracks:
|
||||
if add_progress and track_type != Chapter:
|
||||
progress = Progress(
|
||||
SpinnerColumn(),
|
||||
SpinnerColumn(finished_text=""),
|
||||
BarColumn(),
|
||||
"•",
|
||||
TimeRemainingColumn(compact=True, elapsed_when_finished=True),
|
||||
|
|
Loading…
Reference in New Issue