[longomatch] Avoid useless redraws



commit c814bd608159babab5e77c94013d3807b8aefa66
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Wed Oct 8 01:38:17 2014 +0200

    Avoid useless redraws

 LongoMatch.Drawing/Widgets/TeamTagger.cs |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/LongoMatch.Drawing/Widgets/TeamTagger.cs b/LongoMatch.Drawing/Widgets/TeamTagger.cs
index 6126fbd..e183177 100644
--- a/LongoMatch.Drawing/Widgets/TeamTagger.cs
+++ b/LongoMatch.Drawing/Widgets/TeamTagger.cs
@@ -107,19 +107,16 @@ namespace LongoMatch.Drawing.Widgets
                public void ResetSelection ()
                {
                        tagger.ResetSelection ();
-                       widget.ReDraw ();
                } 
 
                public void Select (List<Player> players)
                {
                        tagger.Select (players);
-                       widget.ReDraw ();
                }
                
                public void Select (Player p)
                {
                        tagger.Select (p);
-                       widget.ReDraw ();
                }
 
                public void Substitute (Player p1, Player p2, TeamTemplate team)


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