- Range for claims makes more sense now.
This commit is contained in:
parent
c447f539ae
commit
016355e501
@ -172,10 +172,10 @@ class ResultWindow(wx.Frame):
|
|||||||
|
|
||||||
lastprot = None
|
lastprot = None
|
||||||
lastrole = None
|
lastrole = None
|
||||||
for i in range(len(claims)-1,-1,-1):
|
for index in range(0,len(claims)):
|
||||||
cl = claims[i]
|
cl = claims[len(claims)-index-1]
|
||||||
# we reverse the display order of the claims!
|
# we reverse the display order of the claims!
|
||||||
y = len(claims)-i
|
y = index+1
|
||||||
|
|
||||||
# a support function
|
# a support function
|
||||||
def addtxt(txt,column):
|
def addtxt(txt,column):
|
||||||
|
Loading…
Reference in New Issue
Block a user