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) #---------------------------------------------------------------------- diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index bd08f8ffdd..250c5b908c 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -60,7 +60,7 @@ _treeList = [ 'BitmapFromBuffer', 'RawBitmapAccess', 'DragScroller', - 'AlphaDrawing', +## 'AlphaDrawing', ]), # managed windows == things with a (optional) caption you can close @@ -233,7 +233,7 @@ _treeList = [ # Images ('Using Images', [ - 'AlphaDrawing', +## 'AlphaDrawing', 'ArtProvider', 'BitmapFromBuffer', 'Cursor', @@ -249,7 +249,7 @@ _treeList = [ # Other stuff ('Miscellaneous', [ - 'AlphaDrawing', +## 'AlphaDrawing', 'ColourDB', ##'DialogUnits', # needs more explanations 'DragScroller',