More int() around float arguments.
diff --git a/Mac/Tools/IDE/PyBrowser.py b/Mac/Tools/IDE/PyBrowser.py
index 19ddbef..397347e 100644
--- a/Mac/Tools/IDE/PyBrowser.py
+++ b/Mac/Tools/IDE/PyBrowser.py
@@ -91,7 +91,7 @@
 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)