From: Kevin A. <ka...@us...> - 2006-01-13 23:17:47
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10296 Modified Files: model.py Log Message: added minimized attribute Index: model.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/model.py,v retrieving revision 1.195 retrieving revision 1.196 diff -C2 -d -r1.195 -r1.196 *** model.py 29 Dec 2005 20:37:16 -0000 1.195 --- model.py 13 Jan 2006 23:17:35 -0000 1.196 *************** *** 1235,1238 **** --- 1235,1239 ---- title = property(wx.Frame.GetTitle, wx.Frame.SetTitle) visible = property(wx.Frame.IsShown, wx.Frame.Show, doc="whether the background window is visible") + minimized = property(wx.Frame.IsIconized, wx.Frame.Iconize, doc="whether the background window is minimized") |