From: Alex T. <ale...@us...> - 2005-12-19 23:21:04
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19138 Modified Files: tabcodeEditor.py Log Message: Add a spacer to the horizontal box sizer containing the drop-down menus for handler and events. This ensures that adequate space is left, even when wxPython 2.6.1 calculatea min size for the drop down of (0,0). Index: tabcodeEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/tabcodeEditor.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** tabcodeEditor.py 19 Dec 2005 23:18:04 -0000 1.13 --- tabcodeEditor.py 19 Dec 2005 23:20:55 -0000 1.14 *************** *** 182,185 **** --- 182,186 ---- sizer2.Add(self.components.popComponentNames) sizer2.Add(self.components.popComponentEvents) + sizer2.Add( (10,21) ) sizer1.Add(sizer2, 0) |