hello,
I'm totally unfamiliar with Ubuntu (and other Linux distros).
Today I installed Ubuntu in a xVM Virtualbox under winXP.
The Ubuntu installation already contained wxPython:
wx.version()
'2.8.7.1 (gtk2-unicode)'
Now none of my programs works correctly.
One of the main problems is that I frequently use right mouse popup on the customtreectrl.
Making a small program with only a customtreectrl revealed the problem:
These are the bindings
self.Tree.Bind ( wx.EVT_RIGHT_DOWN, self.OnRightDown )
self.Tree.Bind ( wx.EVT_CONTEXT_MENU, self.OnShowPopup )
Under winXP,
right mouse click generates both events
Under Ubuntu, only the Right_Down event
and not the Context_Menu event.
Now I want to look for Customctlr.py,
but I can't find it under Ubuntu.
Where can I find that file ?
Is this a bug in CustomTreeCtrl ?
Is there a workaround ?
(Maybe I could bind all actions needed to the Right_Down event ?)
thanks,
Stef Mientki