In the course of buying a new laptop, I've upgraded wxPython to version 4.2.2, and in an otherwise-fine GUI application (including tree, forms, perspectives, ... all provided with wxPython), the placement of StaticBitmap controls on a Panel does not work anymore:
Instead of being laid out in a grid, the bitmaps all start from the origin (0,0), overlapping. The correct position is supplied to StaticBitmap() (as before with the old wxPython version), but seemingly the behavior of StaticBitmap or Panel or ... has changed.
In the documentation, there's the caveat that StaticBitmap is reliable only for small images, and larger images should use GenericStaticBitmap. Is that the point of change and failure?
Any pointers?
EDIT: Forgot to mention: I also checked the wxPython version history and only found "added wrapper to GenericStaticBitmap" (v4.2.1) while searching for "StaticBitmap" - this should not affect the use of StaticBitmap, I think.