X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/089142a562148d69dbccfba669b66eff78a7f5b5..42f8298f6f42d5d63bb3caf65682b7d9d9f8b702:/wxPython/demo/Cursor.py diff --git a/wxPython/demo/Cursor.py b/wxPython/demo/Cursor.py index 8d05e7cb2c..29b7f9c7ea 100644 --- a/wxPython/demo/Cursor.py +++ b/wxPython/demo/Cursor.py @@ -109,7 +109,8 @@ class TestPanel(wx.Panel): dc = wx.ClientDC(self.win) dc.SetPen(wx.Pen("RED")) dc.SetBrush(wx.Brush("RED")) - dc.DrawCircle(evt.GetPosition(), 4) + pos = evt.GetPosition() + dc.DrawCircle(pos.x, pos.y, 4) #---------------------------------------------------------------------- @@ -135,5 +136,5 @@ This demo shows the stock mouse cursors that are available to wxPython. if __name__ == '__main__': import sys,os import run - run.main(['', os.path.basename(sys.argv[0])]) + run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])