From 0350e78d7cca18d8c142fff5f4a27b016fe62737 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 15 Aug 2003 22:20:33 +0000 Subject: [PATCH] don't create a multiline text control in the text editor (even not under MSW) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@22923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/grid.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 2abc951b83..fa1ded4521 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -562,8 +562,7 @@ void wxGridCellTextEditor::Create(wxWindow* parent, m_control = new wxTextCtrl(parent, id, wxEmptyString, wxDefaultPosition, wxDefaultSize #if defined(__WXMSW__) - , wxTE_PROCESS_TAB | wxTE_MULTILINE | - wxTE_NO_VSCROLL | wxTE_AUTO_SCROLL + , wxTE_PROCESS_TAB | wxTE_AUTO_SCROLL #endif );