I'm not sure if R'bot's message is still in a mail queue somewhere, but while the mail lists were down I made a preview build of 2.8.5.0. You can get it at http://wxpython.wxcommunity.com/preview/20070911/
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
Traceback (most recent call last):
File "C:\Python25\lib\site-packages\wx-2.8-msw-unicode\wx\lib\flatnotebook.py
"
, line 4107, in OnLeftUp
self.PopupTabsMenu()
File “C:\Python25\lib\site-packages\wx-2.8-msw-unicode\wx\lib\flatnotebook.py”
, line 4847, in PopupTabsMenu
item.EnableTab(pi.GetEnabled
())
AttributeError: ‘MenuItem’ object has no attribute ‘EnableTab’
Traceback (most recent call last):
File
"C:\Python25\lib\site-packages\wx-2.8-msw-unicode\wx\lib\flatnotebook.py
"
, line 4107, in OnLeftUp
self.PopupTabsMenu()
File
"C:\Python25\lib\site-packages\wx-2.8-msw-unicode\wx\lib\flatnotebook.py"
, line 4847, in PopupTabsMenu
item.EnableTab(pi.GetEnabled ())
AttributeError: 'MenuItem' object has no attribute 'EnableTab'
Should be:
item.Enable(pi.GetEnabled())
Thanks. Looks like a copy/paste error.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!