Boundary condition
This commit is contained in:
parent
b861fed666
commit
65ca48d184
1 changed files with 3 additions and 3 deletions
|
@ -351,10 +351,10 @@ def ProcessComments(comments, f, width, height, bottomReserved, fontface, fontsi
|
|||
|
||||
def TestFreeRows(rows, c, row, width, height, bottomReserved, lifetime):
|
||||
res = 0
|
||||
rowmax = height-bottomReserved-c[7]
|
||||
rowmax = height-bottomReserved
|
||||
targetRow = None
|
||||
if c[4] in (1, 2):
|
||||
while row <= rowmax and res < c[7]:
|
||||
while row < rowmax and res < c[7]:
|
||||
if targetRow != rows[c[4]][row]:
|
||||
targetRow = rows[c[4]][row]
|
||||
if targetRow and targetRow[0]+lifetime > c[0]:
|
||||
|
@ -366,7 +366,7 @@ def TestFreeRows(rows, c, row, width, height, bottomReserved, lifetime):
|
|||
thresholdTime = c[0]-lifetime*(1-width/(c[8]+width))
|
||||
except ZeroDivisionError:
|
||||
thresholdTime = c[0]-lifetime
|
||||
while row <= rowmax and res < c[7]:
|
||||
while row < rowmax and res < c[7]:
|
||||
if targetRow != rows[c[4]][row]:
|
||||
targetRow = rows[c[4]][row]
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue