From 04af6640bb6f054adea7bd0f8d455857e3a81ebd Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 16 Jan 2018 00:51:00 +0100 Subject: Pair/team numbers in names grid table added as numeric values. Fixes #37 --- Aktywator/Tournament.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Aktywator/Tournament.cs') diff --git a/Aktywator/Tournament.cs b/Aktywator/Tournament.cs index d6da2d4..5fd6772 100644 --- a/Aktywator/Tournament.cs +++ b/Aktywator/Tournament.cs @@ -96,7 +96,7 @@ namespace Aktywator { DataGridViewRow row = new DataGridViewRow(); row.Cells.Add(new DataGridViewTextBoxCell()); - row.Cells[0].Value = pairNumber.ToString(); + row.Cells[0].Value = pairNumber; foreach (string name in names) { DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell(); -- cgit v1.2.3