Update song_select.py

This commit is contained in:
Anthony Samms
2025-10-29 23:57:33 -04:00
parent 3024b7d412
commit 3acc375aaf

View File

@@ -53,6 +53,10 @@ class TwoPlayerSongSelectScreen(SongSelectScreen):
self.text_fade_in.start() self.text_fade_in.start()
self.text_fade_out.start() self.text_fade_out.start()
elif action == "select_song": elif action == "select_song":
current_song = self.navigator.get_current_item()
if not isinstance(current_song, SongFile):
self.navigator.select_current_item()
return
selected_song = self.navigator.select_current_item() selected_song = self.navigator.select_current_item()
if selected_song: if selected_song:
self.state = State.SONG_SELECTED self.state = State.SONG_SELECTED