Added region arg to update calls. And binhex files rebinhexed.
diff --git a/Mac/scripts/MkDistr_ui.py b/Mac/scripts/MkDistr_ui.py
index f9192f5..1c482ef 100644
--- a/Mac/scripts/MkDistr_ui.py
+++ b/Mac/scripts/MkDistr_ui.py
@@ -127,7 +127,7 @@
 			for i in range(len(contents)):
 				self.list.LSetCell(contents[i], (0, i))
 		self.list.LSetDrawingMode(1)
-		self.list.LUpdate()
+		self.list.LUpdate(self.wid.GetWindowPort().visRgn)
 		
 	def additem(self, item):
 		where = self.list.LAddRow(1, 0)
@@ -161,7 +161,7 @@
 		return values
 		
 	def do_rawupdate(self, window, event):
-		self.list.LUpdate()
+		self.list.LUpdate(self.wid.GetWindowPort().visRgn)
 		
 	def do_close(self):
 		self.close()