[longomatch] Redraw after adding removing objects



commit 16cad86f80a8673c7fa99c3a8d496d8644860b75
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Wed Nov 30 22:28:28 2011 +0100

    Redraw after adding removing objects

 LongoMatch.GUI/Gui/Base/TimeScaleBase.cs |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/LongoMatch.GUI/Gui/Base/TimeScaleBase.cs b/LongoMatch.GUI/Gui/Base/TimeScaleBase.cs
index c2c1fa8..d3c39ae 100644
--- a/LongoMatch.GUI/Gui/Base/TimeScaleBase.cs
+++ b/LongoMatch.GUI/Gui/Base/TimeScaleBase.cs
@@ -113,10 +113,12 @@ namespace LongoMatch.Gui.Base
 
 		public void AddTimeNode(T timeNode) {
 			list.Add(timeNode);
+			QueueDraw();
 		}
 
 		public void RemoveTimeNode(T timeNode) {
 			list.Remove(timeNode);
+			QueueDraw();
 		}
 
 		public void ReDraw() {



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