[longomatch] Fix edition of lead and lag time



commit 374a674400166f03503b6f630982d7540ba8e9e4
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Fri Jan 27 21:18:08 2012 +0100

    Fix edition of lead and lag time

 LongoMatch.GUI/Gui/Component/CategoryProperties.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/LongoMatch.GUI/Gui/Component/CategoryProperties.cs b/LongoMatch.GUI/Gui/Component/CategoryProperties.cs
index 7f4c914..ea73620 100644
--- a/LongoMatch.GUI/Gui/Component/CategoryProperties.cs
+++ b/LongoMatch.GUI/Gui/Component/CategoryProperties.cs
@@ -117,8 +117,8 @@ namespace LongoMatch.Gui.Component
 				
 			nameentry.Text = cat.Name;
 				
-			lagtimebutton.Value = cat.Start.Seconds;
-			leadtimebutton.Value = cat.Stop.Seconds;
+			leadtimebutton.Value = cat.Start.Seconds;
+			lagtimebutton.Value = cat.Stop.Seconds;
 			colorbutton1.Color = Helpers.ToGdkColor(cat.Color);
 			sortmethodcombobox.Active = (int)cat.SortMethod;
 			



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