Let's say I have a simple application such as the following:
import wx
app = wx.App()
frame = wx.Frame(None, -1, 'This is the frame title')
frame.Show()
frame.Maximize()
app.MainLoop()
Is there a method I can call on the frame to un-maximize it? I have tried frame.Unmaximize()
and frame.Maximize(False)
but the former is undefined
, while the latter seems to 'fail' silently in Ubuntu.
Here it says that Maximize(False)
is the way to go. Is there a bug I should submit, or is there something else I miss here?