From 0dee5b1f231a462cf2ae9483105cf6bf47577ee2 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 6 Oct 2016 23:33:33 -0700 Subject: [PATCH] tweak the text a little --- demo/Cursor.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/demo/Cursor.py b/demo/Cursor.py index 1af8483a..44046f4e 100644 --- a/demo/Cursor.py +++ b/demo/Cursor.py @@ -222,12 +222,14 @@ class TestPanel(wx.Panel): # Create the controls. self.cb = wx.ComboBox(self, -1, "wx.CURSOR_DEFAULT", choices=choices, style=wx.CB_READONLY) - self.tx = wx.StaticText(self, -1, - "This sample allows you to see all the stock cursors available to wxPython,\n" - "and also custom cursors loaded from images, .cur, or .ani files.\n" - "Simply select a name from the wx.Choice and then move the mouse into the window \n" - "below to see the cursor.\n" - "NOTE: not all stock cursors have a specific representaion on all platforms.") + self.tx = wx.StaticText(self, -1, """\ +This sample allows you to see all the stock cursors available to wxPython, +and also custom cursors loaded from images, .cur, or .ani files. Simply +select a name from the wx.Choice and then move the mouse into the window +or the widgets below to see the cursor. + +NOTE: not all stock cursors have a specific representation on all platforms. +""") self.testPanel = CursorTestPanel(self, log)