From: Vadim Zeitlin Date: Tue, 9 Apr 2002 19:40:37 +0000 (+0000) Subject: made one button label multiline for testing X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d769e8ebe01770bd070e1dd64b5a8f6e96c2dad7 made one button label multiline for testing git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/controls/controls.cpp b/samples/controls/controls.cpp index e4b7ae08e7..c35fdf2f9b 100644 --- a/samples/controls/controls.cpp +++ b/samples/controls/controls.cpp @@ -814,7 +814,7 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h ) sizer->Add( new wxButton(panel, -1, "Test Button &1" ), 3, wxALL, 10 ); sizer->Add( 20,20, 1 ); - sizer->Add( new wxButton(panel, -1, "Test Button &2" ), 3, wxGROW|wxALL, 10 ); + sizer->Add( new wxButton(panel, -1, "Multiline\nbutton" ), 3, wxGROW|wxALL, 10 ); panel->SetSizer( sizer );