diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-04-10 14:49:41 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-04-10 14:49:41 (GMT) |
commit | 0b690db57a786324fe256819f576d233f69440b1 (patch) | |
tree | 90ed7cbe3ab069e72a7896d7aa216aa050418823 /Mac/Lib/test/tlist_dialog.py | |
parent | 2b72417da0af053f6efc1b3574361744eb22d2a7 (diff) | |
download | cpython-0b690db57a786324fe256819f576d233f69440b1.zip cpython-0b690db57a786324fe256819f576d233f69440b1.tar.gz cpython-0b690db57a786324fe256819f576d233f69440b1.tar.bz2 |
Added region argument to various ...Update calls.
Also, some rsrc files got rebinhexed (sigh)
Diffstat (limited to 'Mac/Lib/test/tlist_dialog.py')
-rw-r--r-- | Mac/Lib/test/tlist_dialog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Lib/test/tlist_dialog.py b/Mac/Lib/test/tlist_dialog.py index a5b9e04..cacfd47 100644 --- a/Mac/Lib/test/tlist_dialog.py +++ b/Mac/Lib/test/tlist_dialog.py @@ -28,7 +28,7 @@ def dodialog(items): # Draw it. # list.LSetDrawingMode(1) - list.LUpdate() + list.LUpdate(self.wid.GetWindowPort().visRgn) # # Do the (modeless) dialog # @@ -41,7 +41,7 @@ def dodialog(items): if what == updateEvt: # XXXX We just always update our list (sigh...) SetPort(window) - list.LUpdate() + list.LUpdate(self.wid.GetWindowPort().visRgn) if IsDialogEvent(ev): # It is a dialog event. See if it's ours. ok, window, item = DialogSelect(ev) |