mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-31 06:18:17 +00:00
Draw separator for final total
This commit is contained in:
parent
0d37431def
commit
aa9a991a85
1 changed files with 3 additions and 1 deletions
|
|
@ -581,7 +581,9 @@ class Send(Handler):
|
|||
p = self.manager.progress
|
||||
af = self.manager.active_file
|
||||
now = monotonic()
|
||||
if af is not None:
|
||||
if af is None:
|
||||
self.write('─' * self.screen_size.width)
|
||||
else:
|
||||
self.draw_progress_for_current_file(af, spinner_char=sc)
|
||||
self.print()
|
||||
self.render_progress(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue