]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct call to shape.Show()
authorRobin Dunn <robin@alldunn.com>
Thu, 30 Sep 2004 23:12:29 +0000 (23:12 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 30 Sep 2004 23:12:29 +0000 (23:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/ogl/_diagram.py

index 4f348d7df4d28caedb43cb517eaea84a082b566a..8e8f8347246b95412b4da1871a599d853b2bb1ee 100644 (file)
@@ -82,7 +82,7 @@ class Diagram(object):
     def ShowAll(self, show):
         """Call Show for each shape in the diagram."""
         for shape in self._shapeList:
-            shape.Show()
+            shape.Show(show)
 
     def DrawOutline(self, dc, x1, y1, x2, y2):
         """Draw an outline rectangle on the current device context."""