From 936bea5dc116025f950ccfd462f20dcedd2c874d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 9 Mar 2002 21:18:55 +0000 Subject: [PATCH] Reformatted some demo text git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14521 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/RowColSizer.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/wxPython/demo/RowColSizer.py b/wxPython/demo/RowColSizer.py index 433a7aac6e..24921ca057 100644 --- a/wxPython/demo/RowColSizer.py +++ b/wxPython/demo/RowColSizer.py @@ -10,11 +10,13 @@ class TestPanel(wxPanel): wxPanel.__init__(self, parent, -1) sizer = RowColSizer() - text = "This sizer lays out it's items by row and column that are"\ - "specified explicitly when the item is added to the sizer.\n"\ - "Grid cells with nothing in them are supported and column-"\ - "or row-spanning is handled as well. Growable rows and\n"\ - "columns are specified just like the wxFlexGridSizer." + text = "This sizer lays out it's items by row and column "\ + "that are specified explicitly when the item is \n"\ + "added to the sizer. Grid cells with nothing in "\ + "them are supported and column- or row-spanning is \n"\ + "handled as well. Growable rows and columns are "\ + "specified just like the wxFlexGridSizer." + sizer.Add(wxStaticText(self, -1, text), row=1, col=1, colspan=5) sizer.Add(wxTextCtrl(self, -1, "(3,1)"), flag=wxEXPAND, row=3, col=1) -- 2.50.0