Hi I am using the below piece of code to create a 3 second info popup on top of my application. This works fine on Mac, but on Windows the main background panel, the buttons and text etc all shift up about 20 pixels as soon as the wx.BusyInfo window opens, it looks very odd. Is there any reason for this issue only on Windows?
I am using Python 2.7, wxpython 3.0 (latest), Windows 7.
msg = "Job Submitted"
jobSubmitmsg = wx.BusyInfo(msg, self)
time.sleep(3)
jobSubmitmsg = None
``
Kind regards.