Skip to content

Commit

Permalink
gui: fix '歌曲详情' btn in player_playlist menu bar
Browse files Browse the repository at this point in the history
  • Loading branch information
cosven committed Oct 28, 2024
1 parent 30023db commit 0177170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feeluown/gui/components/player_playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def contextMenuEvent(self, e):
action.triggered.connect(lambda: self._remove_songs(songs))
if len(songs) == 1:
menu.addSeparator()
SongMenuInitializer(self._app, songs).apply(menu)
SongMenuInitializer(self._app, songs[0]).apply(menu)
menu.exec_(e.globalPos())

def scroll_to_current_song(self):
Expand Down

0 comments on commit 0177170

Please sign in to comment.