]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Button.py
- undo/redo fixes for moving and cut/paste;
[wxWidgets.git] / wxPython / demo / Button.py
index 85fbae4c77f2bbb670dcff6ff7bc78e0b44d8b40..46415e45af79ebf387bca4f3d523140806cdc3f5 100644 (file)
@@ -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)