X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f72b58ae6635bca17e8e19889a84e3b70c7f3a5..57d0f66a02c560a1d7c772c1272aedd03eb709ea:/wxPython/demo/AlphaDrawing.py diff --git a/wxPython/demo/AlphaDrawing.py b/wxPython/demo/AlphaDrawing.py index 740d29cfbe..dfebd4a976 100644 --- a/wxPython/demo/AlphaDrawing.py +++ b/wxPython/demo/AlphaDrawing.py @@ -31,7 +31,7 @@ class TestPanel(wx.Panel): dc.SetPen(wx.Pen(penclr)) dc.SetBrush(wx.Brush(brushclr)) rect.SetPosition(pos) - dc.DrawRectangleRect(rect) + dc.DrawRoundedRectangleRect(rect, 8) #----------------------------------------------------------------------