Fix cursor

This commit is contained in:
Phyks 2014-11-11 19:12:10 +01:00
parent ed8d76227e
commit 3b2ef77d8e
1 changed files with 2 additions and 0 deletions

View File

@ -310,4 +310,6 @@ if __name__ == '__main__':
frame = PaintFrame()
frame.Show()
frame.ShowFullScreen(True, wx.FULLSCREEN_ALL)
cursor = wx.StockCursor(wx.CURSOR_PENCIL)
frame.SetCursor(cursor)
app.MainLoop()