diff --git a/kittens/tui/progress.py b/kittens/tui/progress.py index 8162124d0..ffcca1c42 100644 --- a/kittens/tui/progress.py +++ b/kittens/tui/progress.py @@ -30,10 +30,7 @@ def render_progress_bar(frac: float, width: int = 80) -> str: fl += 1 needs_break = False ans = styled(filled, fg='blue') - unfilled = '' - if width > fl: - if needs_break: - unfilled += '🬇' + unfilled = '🬇' if width > fl and needs_break else '' filler = width - fl - len(unfilled) if filler > 0: unfilled += repeat('🬋', filler)