[Python-checkins] CVS: python/dist/src/Mac/Demo/textedit ped.py,1.6,1.7

Jack Jansen jackjansen@users.sourceforge.net
Fri, 03 Aug 2001 06:31:37 -0700


Update of /cvsroot/python/python/dist/src/Mac/Demo/textedit
In directory usw-pr-cvs1:/tmp/cvs-serv5116/Demo/textedit

Modified Files:
	ped.py 
Log Message:
Merging appropriate 2.1.1 fixes back into the main trunk.


Index: ped.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Demo/textedit/ped.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ped.py	2001/04/25 22:05:36	1.6
--- ped.py	2001/08/03 13:31:34	1.7
***************
*** 20,24 ****
  		self.name = name
  		r = windowbounds(400, 400)
! 		w = Win.NewWindow(r, name, 1, 0, -1, 1, 0x55555555)
  		self.wid = w
  		x0, y0, x1, y1 = self.wid.GetWindowPort().portRect
--- 20,24 ----
  		self.name = name
  		r = windowbounds(400, 400)
! 		w = Win.NewWindow(r, name, 1, 0, -1, 1, 0)
  		self.wid = w
  		x0, y0, x1, y1 = self.wid.GetWindowPort().portRect
***************
*** 339,342 ****
--- 339,344 ----
  		if self.active:
  			self.active.do_idle()
+ 		else:
+ 			Qd.SetCursor(Qd.qd.arrow)
  
  def main():