ToolBar and icons, weirdness...

Basil Shubin wrote:

Hi friends,

Strange and weird thing I had discover. In some not quite clear condition, the button icons on toolbar widget looks very weird...

On Linux/GTK box with wxPython 2.6.3.2 - everything ok!

On Win2k SP4 box with wxPython 2.3.3.3 - everything ok!

But on WinXP SP2 with wxPython 2.6.3.2 - icons look very weird... don't know why

Does it also do it with 2.8.0.1? If so then please submit a bug report about it with a category of "wxMSW Specific" and attach one of the icon files that has a problem.

···

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

I had to turn off color-remapping on wx.MSW in order to get the PNGs in
my toolbar get displayed correctly.

    # Make sure to disable the color-remapping in windows
    wx.SystemOptions.SetOption ('msw.remap', '0')

    self.toolbar = self.container.CreateToolBar()

Maybe this helps ...

Thanks,
Johannes

···

Am Dienstag, den 02.01.2007, 09:00 -0800 schrieb Robin Dunn:

> But on WinXP SP2 with wxPython 2.6.3.2 - icons look very weird...
don't
> know why

--
BYTEWISE Software GmbH Tel +43 (5577) 89877-0
i.A. Johannes Vetter Fax +43 (5577) 89877-66
A-6890 Lustenau, Enga 2 http://www.bytewise.at
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Individuelle Datenbanklösungen für GNU/Linux, Windows und
Mac OSX: BYTEWISE Software GmbH - Unsere Leistungen - Datenbanklösungen

Robin Dunn wrote:

Basil Shubin wrote:

Hi friends,

Strange and weird thing I had discover. In some not quite clear condition, the button icons on toolbar widget looks very weird...

On Linux/GTK box with wxPython 2.6.3.2 - everything ok!

On Win2k SP4 box with wxPython 2.3.3.3 - everything ok!

But on WinXP SP2 with wxPython 2.6.3.2 - icons look very weird... don't know why

Does it also do it with 2.8.0.1? If so then please submit a bug report about it with a category of "wxMSW Specific" and attach one of the icon files that has a problem.

After I have migrate to new wxPython, this bug disappear. With 2.8 everything work fine.