summaryrefslogtreecommitdiffstats
path: root/Mac/scripts/MkDistr_ui.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-04-10 14:52:18 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-04-10 14:52:18 (GMT)
commit822a30b0eea58028eca93b34d7674fc511bbdbce (patch)
treecf2fe2d115e253fc638bec991cebe17102ef8e09 /Mac/scripts/MkDistr_ui.py
parent270f411f177f2e3b372f05cb470cc27ea154e4f9 (diff)
downloadcpython-822a30b0eea58028eca93b34d7674fc511bbdbce.zip
cpython-822a30b0eea58028eca93b34d7674fc511bbdbce.tar.gz
cpython-822a30b0eea58028eca93b34d7674fc511bbdbce.tar.bz2
Added region arg to update calls. And binhex files rebinhexed.
Diffstat (limited to 'Mac/scripts/MkDistr_ui.py')
-rw-r--r--Mac/scripts/MkDistr_ui.py4
1 files changed, 2 insertions, 2 deletions
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 @@ class ListWindow(DialogWindow):
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 @@ class ListWindow(DialogWindow):
return values
def do_rawupdate(self, window, event):
- self.list.LUpdate()
+ self.list.LUpdate(self.wid.GetWindowPort().visRgn)
def do_close(self):
self.close()