I started looking into the project PythonReports and they have a wxPython based template designer which gives me some exceptions.
1. On wx.Color which does no longer exist in wxPython 2.9.4 - is this just an oversight as it is not mentioned in the change doc
2. It is also using platebtn.SetState which does not exist either, there is only the _SetState. Haven't quit figured out why they are setting the state manually.
Will these come back in a future version or are they gone for good? In which case at least the wx.Color one should be mentioned in the changes doc, no?
2. It is also using platebtn.SetState which does not exist either, there
is only the _SetState. Haven't quit figured out why they are setting
the state manually.
Cody will need to answer this one, but it looks like the version in the 2.9 source tree is much newer than the one in the 2.8 tree if that gives you any hints.
It is also using platebtn.SetState which does not exist either, there
is only the _SetState. Haven’t quit figured out why they are setting
the state manually.
Cody will need to answer this one, but it looks like the version in the 2.9 source tree is much newer than the one in the 2.8 tree if that gives you any hints.
The SetState method should not have been exposed to begin with. Used 2.9 as a point to hide it. So its gone and not likely to come back.
If the Platebtn toggle action caused a mini-frame to be launched, then when the mini-frame is closed surely a means should exist to deselect the platebtn?
Since SetState() doesn’t exist anymore, how can I invoke this behaviour?