X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8b7fa2d9691bc34339e38684a798e9ab3f711e13..8145496b9bd1cbccf7411c5e76f72a9dfc7ebf1b:/wxPython/demo/Button.py diff --git a/wxPython/demo/Button.py b/wxPython/demo/Button.py index 85fbae4c77..46415e45af 100644 --- a/wxPython/demo/Button.py +++ b/wxPython/demo/Button.py @@ -19,7 +19,7 @@ class TestPanel(wx.Panel): b.SetToolTipString("This is a Hello button...") b = wx.Button(self, 40, "Flat Button?", (20,150), style=wx.NO_BORDER) - b.SetToolTipString("This button has a style flag of wx.NO_BORDER. On some platforms that will give it a flattened look.") + b.SetToolTipString("This button has a style flag of wx.NO_BORDER.\nOn some platforms that will give it a flattened look.") self.Bind(wx.EVT_BUTTON, self.OnClick, b)