Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugran committed Aug 20, 2024
2 parents d3b6a4e + 76dba86 commit 2415add
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lyrics/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ def scroll_down(self, step=1):
self.current_pos += step
else:
self.current_pos = self.player.track.length - 1
self.stdscr.move(self.height - 1, 0)
self.stdscr.clrtoeol()
self.stdscr.addstr(self.height - 1, 1, 'END', curses.A_REVERSE)

def scroll_up(self, step=1):
Expand Down

0 comments on commit 2415add

Please sign in to comment.