Skip to content

Commit

Permalink
Fix til death playlist selection for pages other than 1
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed Feb 18, 2018
1 parent 3214b75 commit b3ffdca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ local function PlaylistTitleDisplayButton(i)
end,
MouseLeftClickMessageCommand=function(self)
if ButtonActive(self,fontScale) and allplaylistsactive then
SONGMAN:SetActivePlaylist(allplaylists[i]:GetName())
SONGMAN:SetActivePlaylist(allplaylists[i + ((currentplaylistpage - 1) * playlistsperpage)]:GetName())
pl = allplaylists[i + ((currentplaylistpage - 1) * playlistsperpage)]
MESSAGEMAN:Broadcast("DisplaySinglePlaylist")
end
Expand Down

0 comments on commit b3ffdca

Please sign in to comment.