X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f72b58ae6635bca17e8e19889a84e3b70c7f3a5..6fea499ca8a3e99bfb7c16ce167146f1fa754367:/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) #----------------------------------------------------------------------