From f571e9f7476199bb65748876b2895ef199dc0491 Mon Sep 17 00:00:00 2001 From: David Smith Date: Tue, 22 Sep 2015 13:51:48 -0500 Subject: [PATCH] Change voter styling of compact output to be spoilered list, rather than unspoilered sequence. --- TallyCore/TextResults.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TallyCore/TextResults.cs b/TallyCore/TextResults.cs index d22cc808..ee59cb30 100644 --- a/TallyCore/TextResults.cs +++ b/TallyCore/TextResults.cs @@ -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);