I have a wx.BitmapButton using an image created with Gimp2. The
original image is a gif file that is converted to a png file by
wxDesigner. In my application I call getBitmapDisabled. It is
returning a bitmap, according to the IDE debugger. When I apply it
later in the code, I do a gui.Refresh() followed by a gui.Update().
However the button is not greyed out. Am I correct in assuming that
the getBitmapDisabled() is supposed to take the original ( enabled )
button bitmap image and create a greyed out ( disabled ) bitmap that
can be applied. Or, do I have to actually create a greyed out image
myself? I am using Python 2.4 and wxPython 2.6.1.0 on a Windows XP Pro
machine. I have tried using ...button.Enable(false), and while this does disable the button
however I am still displaying the original bitmap.