Hello to demo.py creators, or anyone with experience in writing controls for Linux,
Whoever wrote demo.py has done a great service. It was used as good examples to create the system I am working on.
However, it seems the examples there need some polishing and perhaps upgraded in time.
I have a combo box control that is based on ComboCtrl demo in demo.py and I noticed strange behavior on Linux Ubuntu 14.04 with anaconda. The issue is that I cannot vertically scroll the list box. For some reason the click is interpreted as a lose focus event and the popup listbox closes rather than scrolling down to allow selecting a value down the list.
I went back to the basics and tried the combo box controls in demo.py and found out that the behavior is the same. Whenever a scroll bar is moved, the system closes the list box.
Is there anyway to prevent this and allow the scroll to happen? Any bind or unbind command needed during setup?
I am using WxPython 3.0 on a virtual box Ubuntu 14.04 using Anaconda 2.01 installed with the command:
conda install wxpython -c asmeurer
I hope someone can fix the demo so I can fix my code accordingly.
Jacob