Kaydet (Commit) a359a3d0 authored tarafından Jack Jansen's avatar Jack Jansen

More int() around float arguments.

üst c0452da1
......@@ -91,7 +91,7 @@ def truncString(s, maxwid):
def drawTextCell(text, cellRect, ascent, theList):
l, t, r, b = cellRect
cellwidth = r - l
Qd.MoveTo(l + 2, t + ascent)
Qd.MoveTo(int(l + 2), int(t + ascent))
condense, text = truncString(text, cellwidth - 3)
if condense:
Qd.TextFace(QuickDraw.condense)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment