I'm using the wxBusyInfo several times in my application but
sometimes, for unclear reasons, the BusyInfo don't stay on top. Is
there a way to push the message to stay in front of the application?
The frame used by wx.BusyInfo only uses the stay on top flag if the parent window also has it. It doesn't look like there is any way to force it to use the flag since that window is not publicly accessible, however it would not be hard to duplicate wx.BusyInfo in Python code and give it the ability to do so. Here is the C++:
I'm using the wxBusyInfo several times in my application but
sometimes, for unclear reasons, the BusyInfo don't stay on top. Is
there a way to push the message to stay in front of the application?