From 5411c9231ce183bbcbd3208e382aa059894309cf Mon Sep 17 00:00:00 2001 From: David Smith Date: Mon, 7 Sep 2015 20:19:39 -0500 Subject: [PATCH] Open up rank votes to the max of 9 to be displayed. --- TallyCore/RankVotes.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TallyCore/RankVotes.cs b/TallyCore/RankVotes.cs index 427e0520..9a3b4039 100644 --- a/TallyCore/RankVotes.cs +++ b/TallyCore/RankVotes.cs @@ -52,9 +52,9 @@ private static List RankTask(IGrouping topChoices = new List(4); + List topChoices = new List(9); - for (int i = 0; i < 4; i++) + for (int i = 0; i < 9; i++) { System.Diagnostics.Debug.WriteLine($"- Loop [{i}]");