Preview build available

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!

Hi Robin,

There seams to be 2 indentation errors in the customtreectrl.py

On line 2820 (the docstring is on column to the left of where it should be)

and lines 3124 to 3128 are one column to the right of where they should be.

I’m not 100% sure but did this file even compiled?

Anyway… Keep up the good work.
:slight_smile:
Peter

···

On 9/13/07, Robin Dunn robin@alldunn.com wrote:

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!


To unsubscribe, e-mail:
wxPython-dev-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-dev-help@lists.wxwidgets.org


There is NO FATE, we are the creators.

Peter Damoc wrote:

Hi Robin,

There seams to be 2 indentation errors in the customtreectrl.py

On line 2820 (the docstring is on column to the left of where it should be)

and lines 3124 to 3128 are one column to the right of where they should be.

Thanks.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

Thanks,

Got an error from flatnotebook:

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())

roee shlomo wrote:

Thanks,
Got an error from flatnotebook:

    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!