]> git.saurik.com Git - wxWidgets.git/commitdiff
don't create a multiline text control in the text editor (even not under MSW)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Aug 2003 22:20:33 +0000 (22:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Aug 2003 22:20:33 +0000 (22:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index bd3c956897db5d4cbe2a5939f2e1d445f2f477f6..8cdd9eecb85603461b58750b5a74527db541e7f8 100644 (file)
@@ -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
                               );