From: Vadim Zeitlin Date: Fri, 15 Aug 2003 22:20:33 +0000 (+0000) Subject: don't create a multiline text control in the text editor (even not under MSW) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/aaae069f9aaf740d00d3fa81ea0ab5b4fd2e4b01?ds=inline 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/trunk@22923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index bd3c956897..8cdd9eecb8 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -573,8 +573,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 );