|
From: Kevin A. <ka...@us...> - 2004-10-04 19:17:44
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8111/oneEditor/modules Modified Files: resourceOutput.py Log Message: commented out saving background position in resource files Index: resourceOutput.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/modules/resourceOutput.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** resourceOutput.py 3 Oct 2004 23:58:01 -0000 1.1 --- resourceOutput.py 4 Oct 2004 19:16:44 -0000 1.2 *************** *** 162,166 **** desc += " 'name':'%s',\n" % bg.name desc += """ 'title':%s,\n""" % repr(bg.title) ! desc += " 'position':%s,\n" % str(background.GetPositionTuple()) desc += " 'size':%s,\n" % str(background.GetSizeTuple()) --- 162,170 ---- desc += " 'name':'%s',\n" % bg.name desc += """ 'title':%s,\n""" % repr(bg.title) ! # KEA 2004-10-04 ! # need a more sophisticated way of specifying an optional position ! # but just saving the position the user is editing the window at ! # is bad, so turn it off for now ! ## desc += " 'position':%s,\n" % str(background.GetPositionTuple()) desc += " 'size':%s,\n" % str(background.GetSizeTuple()) |