X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e4a197e4c60e461b8068b0619692ea083e30b8b..80a81a12af49ab6acdaf0b62f4aa55e56f45ac6d:/wxPython/demo/GenericButtons.py diff --git a/wxPython/demo/GenericButtons.py b/wxPython/demo/GenericButtons.py index c3e7ff4039..3165c0f977 100644 --- a/wxPython/demo/GenericButtons.py +++ b/wxPython/demo/GenericButtons.py @@ -20,7 +20,7 @@ class TestPanel(wxPanel): b = wxButton(self, -1, "non-default") EVT_BUTTON(self, b.GetId(), self.OnButton) sizer.Add(b) - sizer.Add(10,10) + sizer.Add((10,10)) b = wxGenButton(self, -1, 'Hello') EVT_BUTTON(self, b.GetId(), self.OnButton)