X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/95bfd958bda8955ac81277c78e5627c926154f39..313feadc84cdf5501da71c41178c35bb7bed32eb:/wxPython/demo/ShapedWindow.py?ds=sidebyside diff --git a/wxPython/demo/ShapedWindow.py b/wxPython/demo/ShapedWindow.py index 137481e28c..277f07619d 100644 --- a/wxPython/demo/ShapedWindow.py +++ b/wxPython/demo/ShapedWindow.py @@ -44,7 +44,7 @@ class TestFrame(wx.Frame): self.SetWindowShape() dc = wx.ClientDC(self) - dc.DrawBitmap(self.bmp, (0,0), True) + dc.DrawBitmap(self.bmp, 0,0, True) def SetWindowShape(self, *evt): @@ -63,7 +63,7 @@ class TestFrame(wx.Frame): def OnPaint(self, evt): dc = wx.PaintDC(self) - dc.DrawBitmap(self.bmp, (0,0), True) + dc.DrawBitmap(self.bmp, 0,0, True) def OnExit(self, evt): self.Close() @@ -118,5 +118,5 @@ sensitive to the mouse in those areas either. 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:])