Added region argument to various ...Update calls.

Also, some rsrc files got rebinhexed (sigh)
This commit is contained in:
Jack Jansen 1996-04-10 14:49:41 +00:00
parent 2b72417da0
commit 0b690db57a
5 changed files with 14 additions and 10 deletions

View file

@ -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)