From 0b90bda36ac4ca892035a928e7f1cfa4e8ca339a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 23 Jun 2004 17:42:03 +0000 Subject: [PATCH] don't use wxHSCROLL for the rich edit window, not that it really works as expected it looks ugly in the sample git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27977 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/text/text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/text/text.cpp b/samples/text/text.cpp index a04b944b97..9bdf91d303 100644 --- a/samples/text/text.cpp +++ b/samples/text/text.cpp @@ -930,7 +930,7 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h ) _T("very very very long line to test ") _T("wxHSCROLL style"), wxPoint(450, 10), wxSize(230, 230), - wxTE_RICH | wxTE_MULTILINE | wxHSCROLL); + wxTE_RICH | wxTE_MULTILINE); m_textrich->SetStyle(0, 10, *wxRED); m_textrich->SetStyle(10, 20, *wxBLUE); m_textrich->SetStyle(30, 40, -- 2.45.2