Update TrackPage.py
This commit is contained in:
parent
7fc08602b5
commit
28fe831578
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ class TrackPage(ShtikerPage.ShtikerPage):
|
|||
for index in range(1, MAX_FRAMES + 1):
|
||||
frame = self.trackFrames[index - 1]
|
||||
col = (index - 1) % 6
|
||||
row = int((index - 1) / 6)
|
||||
row = (index - 1) // 6
|
||||
frame.setPos(colPos[col], 0, rowPos[row])
|
||||
frame.setScale(0.39)
|
||||
|
||||
|
|
Loading…
Reference in a new issue