Demo 2.5.2.8 on Suse Linux 9.1 lacks code tab

Hi,
when running the wxdemo on Suse Linux 9.1 with Python 2.3.3 and wxPython 2.5.2.8 the tab showing the code does not show up in the demo. It does however under Win2K with Python 2.3.4 and wxPython 2.5.2.8 (using the same code).
Did I get something wrong?
Christoph

Solution for that: in the
file Main.py
class DemoCodePanel
def __init__
comment out the line: self.Hide()
---snip start----------
class DemoCodePanel(wx.Panel):
    """Panel for the 'Demo Code' tab"""
    def __init__(self, parent, mainFrame):
        wx.Panel.__init__(self, parent, size=(1,1))
        self.Hide()
---snip end-------------

regards
C.

Christoph Herzog wrote:

···

Hi,
when running the wxdemo on Suse Linux 9.1 with Python 2.3.3 and wxPython 2.5.2.8 the tab showing the code does not show up in the demo. It does however under Win2K with Python 2.3.4 and wxPython 2.5.2.8 (using the same code).
Did I get something wrong?
Christoph

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

Christoph Herzog wrote:

Hi,
when running the wxdemo on Suse Linux 9.1 with Python 2.3.3 and wxPython 2.5.2.8 the tab showing the code does not show up in the demo. It does however under Win2K with Python 2.3.4 and wxPython 2.5.2.8 (using the same code).
Did I get something wrong?

No, as you've found out it was a bug. It's been fixed in CVS for some time now.

···

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