Skip to content

Commit

Permalink
Allow merging ranked votes of different ranks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinematics committed Sep 4, 2015
1 parent 9f8da7c commit e1f4cf6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions NetTally/MergeVotesWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,7 @@ public bool VotesCanMerge
if (CurrentVoteType == VoteType.Rank)
{
// Don't allow merging if they're not the same rank.

string markFrom = VoteString.GetVoteMarker(fromVote);
string markTo = VoteString.GetVoteMarker(toVote);

if (markFrom != markTo)
return false;
// Changing: If they're not the same rank, the merge just changes the text of the "from" vote to the "to" vote

// Don't allow merging if they're not the same task.

Expand Down

0 comments on commit e1f4cf6

Please sign in to comment.