Re: wx.EVNT_TEXT_ENTER in wx.ComboBox patch
"Werner F. Bruhin" <[email protected]> Sun, 22 Mar 2009 18:45:16 +0100
| Newsgroups | gmane.comp.ide.boa-constructor.user |
|---|---|
| Message-ID | <[email protected]> |
Hi Barton, Barton wrote: > Hi all, > I've been slow to join the list (fear of span, etc.) and am not sure > if attachments work here. > Werner suggested that attaching a patch to the list was the way to go. > Let me know whether this gets through or not. If the patch is in relation to the wx.TE_PROCESSENTER then CVS is already corrected - i.e. updating from CVS will get you the correction. Anyhow, I attached the patch, just to see that it will work. Werner ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Boa-constructor-users mailing list Boa-constructor-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/boa-constructor-users
basicCompCombobox
(text/plain, 1 KB)
--- C:/Users/wbruhin/AppData/Local/Temp/TCVc204.tmp/BasicCompanions.1.21.py Sun Mar 22 18:43:09 2009
+++ C:/Python25/Lib/site-packages/boa/Companions/BasicCompanions.py Thu Feb 05 10:38:18 2009
@@ -5,7 +5,7 @@
# Author: Riaan Booysen
#
# Created: 2002
-# RCS-ID: $Id: BasicCompanions.py,v 1.21 2007/07/02 15:01:08 riaan Exp $
+# RCS-ID: $Id: BasicCompanions.py,v 1.22 2009/02/05 09:38:18 wbruhin Exp $
# Copyright: (c) 2002 - 2007
# Licence: GPL
#-----------------------------------------------------------------------------
@@ -50,7 +50,7 @@
def __init__(self, name, designer, parent, ctrlClass):
ChoicedDTC.__init__(self, name, designer, parent, ctrlClass)
self.windowStyles = ['wx.CB_SIMPLE', 'wx.CB_DROPDOWN', 'wx.CB_READONLY',
- 'wx.CB_SORT'] + self.windowStyles
+ 'wx.CB_SORT', 'wx.TE_PROCESS_ENTER'] + self.windowStyles
def constructor(self):
return {'Value': 'value', 'Position': 'pos', 'Size': 'size',