From 016355e501ebc9d7808ccca184842dfd2c378ede Mon Sep 17 00:00:00 2001 From: ccremers Date: Fri, 4 Aug 2006 21:06:12 +0000 Subject: [PATCH] - Range for claims makes more sense now. --- gui/Scytherthread.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/Scytherthread.py b/gui/Scytherthread.py index 75895ac..f056111 100644 --- a/gui/Scytherthread.py +++ b/gui/Scytherthread.py @@ -172,10 +172,10 @@ class ResultWindow(wx.Frame): lastprot = None lastrole = None - for i in range(len(claims)-1,-1,-1): - cl = claims[i] + for index in range(0,len(claims)): + cl = claims[len(claims)-index-1] # we reverse the display order of the claims! - y = len(claims)-i + y = index+1 # a support function def addtxt(txt,column):