The mousewheel event in version "wxPythonWIN32-2.3.3pre6u" is not working as before!
When I put a scrolledwindow on wxframe it works,
but when I put a splitterwindow on the wxframe and puts the scrolledwindow inside this splitterwindow
its not working anymore!!!! Every mouse event works, but NOT wheel event .... is this a bug?
.... it works in wxpython version "wxPython-2.3.2.1".
The mousewheel event in version "wxPythonWIN32-2.3.3pre6u" is not
working as before!
When I put a scrolledwindow on wxframe it works, but when I put a
splitterwindow on the wxframe and puts the scrolledwindow inside this
splitterwindow its not working anymore!!!! Every mouse event works,
but NOT wheel event .... is this a bug? .... it works in wxpython
version "wxPython-2.3.2.1".
The window needs to have the focus before it will get the wheel events. I'm
not sure why it was changed but windows no longer automatically get the
focus when clicked upon. It's easy to fix though, just call self.SetFocus()
from your mouse left down handler.
ยทยทยท
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!