Update of /cvsroot/pythoncard/PythonCard/tools/experimentalResourceEditor/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29070/modules
Modified Files:
resourceOutput.py
Log Message:
The experimental resource editor now only outputs the actionBindings if they are not empty.
AB
Index: resourceOutput.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/tools/experimentalResourceEditor/modules/resourceOutput.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** resourceOutput.py 24 Oct 2004 19:21:46 -0000 1.1
--- resourceOutput.py 24 Oct 2004 23:37:27 -0000 1.2
***************
*** 89,92 ****
--- 89,94 ----
if key == 'font' and repr(value) == dFont:
continue
+ if key == 'actionBindings' and value == {}:
+ continue
# KEA 2002-07-07
# what other Unicode strings do we need to deal with above?
|