Fix bug with fullscreen

This commit is contained in:
Phyks 2014-11-11 18:38:18 +01:00
parent 907a22755e
commit ed8d76227e

View File

@ -308,5 +308,6 @@ class PaintFrame(wx.Frame):
if __name__ == '__main__': if __name__ == '__main__':
app = wx.App() app = wx.App()
frame = PaintFrame() frame = PaintFrame()
frame.Show()
frame.ShowFullScreen(True, wx.FULLSCREEN_ALL) frame.ShowFullScreen(True, wx.FULLSCREEN_ALL)
app.MainLoop() app.MainLoop()