X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8eca4fef106b8327e2e55636de3f68a511a4c392..05e00ac5ef410707da86d98786cbb268100a7337:/wxPython/demo/ShapedWindow.py diff --git a/wxPython/demo/ShapedWindow.py b/wxPython/demo/ShapedWindow.py index 98d969a2e2..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()