[longomatch] Add player's number to ease the tagging



commit 049e0aa971926b5daa989dfa9684c06fc5d41507
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Fri Oct 8 20:31:50 2010 +0200

    Add player's number to ease the tagging

 LongoMatch/Gui/Dialog/PlayersSelectionDialog.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/LongoMatch/Gui/Dialog/PlayersSelectionDialog.cs b/LongoMatch/Gui/Dialog/PlayersSelectionDialog.cs
index cb84f94..86ee9d9 100644
--- a/LongoMatch/Gui/Dialog/PlayersSelectionDialog.cs
+++ b/LongoMatch/Gui/Dialog/PlayersSelectionDialog.cs
@@ -54,7 +54,7 @@ namespace LongoMatch.Gui.Dialog
 			for (int i=0;i<playersCount;i++) {
 				player = template.GetPlayer(i);
 				button = new CheckButton();
-				button.Label = player.Name;
+				button.Label = player.Number + "-" + player.Name;
 				button.Name = i.ToString();
 				button.Show();
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]