Fix bug with fullscreen

This commit is contained in:
Phyks 2014-11-11 18:38:18 +01:00
parent 907a22755e
commit ed8d76227e
1 changed files with 4 additions and 3 deletions

View File

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