squashed remaining bugs

This commit is contained in:
Anthony Samms
2025-09-18 14:53:16 -04:00
parent 97ea7112fa
commit f371cbb2e5
4 changed files with 16 additions and 9 deletions

View File

@@ -164,6 +164,7 @@ class ResultScreen:
self.fade_out.update(current_time)
if self.fade_out.is_finished:
self.fade_out.update(current_time)
return self.on_screen_end()
if self.crown is not None:

View File

@@ -2203,6 +2203,8 @@ class FileNavigator:
return False
favorites_path = self.favorite_folder.path / 'song_list.txt'
lines = []
if not Path(favorites_path).exists():
Path(favorites_path).touch()
with open(favorites_path, 'r', encoding='utf-8-sig') as song_list:
for line in song_list:
line = line.strip()