From: Kevin A. <ka...@us...> - 2004-09-15 17:43:39
|
Update of /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27467/tools/resourceEditor/modules Modified Files: propertyEditor.py Log Message: added grid support to cursor key movement Index: propertyEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules/propertyEditor.py,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** propertyEditor.py 12 Sep 2004 17:28:12 -0000 1.53 --- propertyEditor.py 15 Sep 2004 17:43:29 -0000 1.54 *************** *** 144,147 **** --- 144,149 ---- self.components.wPropertyList.stringSelection = "name" self.displayProperty(wName, wClass, propName) + c = self._parent.components[wName] + self._parent.setToolTipDrag(wName, c.position, c.size) def changed(self, event): *************** *** 438,441 **** --- 440,445 ---- self.displayProperty(wName, wClass, propName) self._parent.showSizingHandles(wName) + c = self._parent.components[wName] + self._parent.setToolTipDrag(wName, c.position, c.size) def on_wPropertyList_select(self, event): *************** *** 447,450 **** --- 451,455 ---- def clearComponentList(self): self.components.wComponentList.Clear() + self.statusBar.text = '' def clearPropertyList(self): |