I have an app that lives in the tray, and I'm trying to get it to show/hide when you click a certain menu item in the tray menu. The code almost works, but the window shows up behind other windows, instead of on top like it should. (Note, I don't want it to be always-on-top, just to pop to the top of the window stack.)
It seems to work on Windows just fine, but on Mac it stays below whatever other windows have been pulled in front of it in the mean time.
The relevant code is below.
def on_hide_frame(self, event):
self.frame.on_iconify(event)
def on_restore_frame(self, event):
if self.frame.IsIconized():
self.frame.Iconize(False)
if not self.frame.IsShown():
self.frame.Show(True)
self.frame.Raise()
Also note that, when this is called, self.frame is the same object as app.GetTopWindow() and interchanging the two does not fix the bug.