From: Robin Dunn Date: Thu, 30 Sep 2004 23:12:29 +0000 (+0000) Subject: Correct call to shape.Show() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/94bc006bd2c76bb1c1b1f16e951d066784d38fca Correct call to shape.Show() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/ogl/_diagram.py b/wxPython/wx/lib/ogl/_diagram.py index 4f348d7df4..8e8f834724 100644 --- a/wxPython/wx/lib/ogl/_diagram.py +++ b/wxPython/wx/lib/ogl/_diagram.py @@ -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."""