From: John L. <jla...@gm...> - 2012-09-20 01:50:54
|
On Wed, Sep 19, 2012 at 2:15 AM, Paul K <pau...@ya...> wrote: > Hi All, > > I have a wxChoice dropdown, which I'm populating on wx.wxEVT_SET_FOCUS > event. Unfortunately, this event is not triggered on Mac, which seems > to be a feature. I found a ticket related to this: > http://trac.wxwidgets.org/ticket/10047. > > The fix seems to be using EVT_CHILD_FOCUS instead of EVT_SET_FOCUS > event, but my problem is that *neither* is triggered on Mac (tested > with wxlua 2.8.12.2 on OSX 10.7). I understand that this is probably Some things to try. 1) You should try with 2.9.4 or even trunk. 2) The ticket was for a wxComboBox, you can try that with the readonly style. 3) See if you can get EVT_LEFT_DOWN on the control and be sure to call event.Skip(). Regards, John |