From: Alec B. <wry...@gm...> - 2010-03-09 08:55:24
|
I'm launching a child window, and I'd like it to stay visible (unminimized) when the parent is minimized. Is there some clever window style that can accomplish this? Or some other clever way? I'm launching my child window like this. Note that I already have the ability to specify a window style. # launch it self.childWindow = model.childWindow(self, viewer.Minimal) # the child window object, abbreviated class Minimal(model.Background): .....def __init__(self, aParent, aBgRsrc): ..........aBgRsrc.style = ['wx.DEFAULT_FRAME_STYLE'] ..........model.Background.__init__(self, aParent, aBgRsrc) |