I've written an app using Python 2.7.4 and wxPython 2.9.4.0 on Ubuntu
12.04 and implemented the taskbar icon for the app. It works
perfectly.
But now on the same OS using Python 3.3.1 and the latest Phoenix,
built from source, the app crashes when I right-click on the taskbar
icon. It should pop-up the menu, but it crashes instead.
Anyone has any hints on this one? Were there significant changes made
to wx.TaskBarIcon?
For me on Windows 7, Py 2.7 and 2.9.5.81-r73805 it works using code which is just about straight out of the 2.9 demo with updates for Phoenix, see attached.
I've written an app using Python 2.7.4 and wxPython 2.9.4.0 on Ubuntu
12.04 and implemented the taskbar icon for the app. It works
perfectly.
But now on the same OS using Python 3.3.1 and the latest Phoenix,
built from source, the app crashes when I right-click on the taskbar
icon. It should pop-up the menu, but it crashes instead.
Anyone has any hints on this one? Were there significant changes made
to wx.TaskBarIcon?
For me on Windows 7, Py 2.7 and 2.9.5.81-r73805 it works using code which is just about straight out of the 2.9 demo with updates for Phoenix, see attached.
Werner
–
You received this message because you are subscribed to the Google Groups “wxPython-users” group.
I've written an app using Python 2.7.4 and wxPython 2.9.4.0 on Ubuntu
12.04 and implemented the taskbar icon for the app. It works
perfectly.
But now on the same OS using Python 3.3.1 and the latest Phoenix,
built from source, the app crashes when I right-click on the taskbar
icon. It should pop-up the menu, but it crashes instead.
Anyone has any hints on this one? Were there significant changes made
to wx.TaskBarIcon?
I'm traveling this week and don't have easy access to my linux VMs so I won't be able to look in to this right away.
Robin, it’s okay. I had a bug in my code. I had a wrongly named argument for the Append() method of wx.Menu(), so that’s why the wx.adv.TaskBarIcon() didn’t work for me. Now that my code is fixed, it works perfectly. No testing needed.
···
On Tue, Apr 16, 2013 at 6:38 AM, Robin Dunn robin@alldunn.com wrote:
Boštjan Mejak wrote:
I’ve written an app using Python 2.7.4 and wxPython 2.9.4.0 on Ubuntu
12.04 and implemented the taskbar icon for the app. It works
perfectly.
But now on the same OS using Python 3.3.1 and the latest Phoenix,
built from source, the app crashes when I right-click on the taskbar
icon. It should pop-up the menu, but it crashes instead.
Anyone has any hints on this one? Were there significant changes made
to wx.TaskBarIcon?
I’m traveling this week and don’t have easy access to my linux VMs so I won’t be able to look in to this right away.