Skip to content

Commit

Permalink
Change voter styling of compact output to be spoilered list, rather than
Browse files Browse the repository at this point in the history
unspoilered sequence.
  • Loading branch information
Kinematics committed Sep 22, 2015
1 parent 01c4676 commit f571e9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion TallyCore/TextResults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ private void ConstructNormalOutput()
case DisplayMode.Compact:
userVoteCount = GetUserVoteCount(vote.Value);
AddCompactVote(vote, taskGroup.Key, userVoteCount);
AddCompactVoters(vote.Value);
StartSpoiler("Voters");
AddVoters(vote.Value);
EndSpoiler();
break;
case DisplayMode.CompactNoVoters:
userVoteCount = GetUserVoteCount(vote.Value);
Expand Down

0 comments on commit f571e9f

Please sign in to comment.