Hi,
I use the new method Bind in this way:
self.Bind(wx.EVT_IDLE, self.OnIdle, id=-1)
but now, how to disconnect the event?
using
self.Disconnect(-1, -1, wx.EVT_IDLE)
raise me an exception, this because it comes from the old EVT_* assignment
i used in wxpython 2.4. But now how to Disconnect it?
thanks