[chronojump] Fixed bars order on Jump rj (realtime top graph) since recent commits



commit 588ff60cf3d546500c0fae7ad11d0d4c9da948fa
Author: Xavier de Blas <xaviblas gmail com>
Date:   Wed Apr 20 10:36:15 2022 +0200

    Fixed bars order on Jump rj (realtime top graph) since recent commits

 src/gui/eventExecute.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gui/eventExecute.cs b/src/gui/eventExecute.cs
index e31ad1894..2714b85c3 100644
--- a/src/gui/eventExecute.cs
+++ b/src/gui/eventExecute.cs
@@ -3102,7 +3102,7 @@ public class CairoPaintBarsPreJumpReactiveRealtimeCapture : CairoPaintBarsPre
                double sum = 0; //for tv_l avg
                double min = 1000;
 
-               for(int i = tv_l.Count -1; i >= 0; i --)
+               for(int i = 0; i < tv_l.Count; i ++)
                {
                        double tc = Convert.ToDouble(tc_l[i]);
                        double tv = Convert.ToDouble(tv_l[i]);


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