- Range for claims makes more sense now.

This commit is contained in:
ccremers 2006-08-04 21:06:12 +00:00
parent c447f539ae
commit 016355e501

View File

@ -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):