From: Unknown (MT) Date: Tue, 29 Feb 2000 08:14:01 +0000 (+0000) Subject: add wxTE_AUTO_SCROLL X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cfdd3a98d8b374351ab2ed8f48a155fa52f52c74 add wxTE_AUTO_SCROLL git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/textctrl.cpp b/src/msw/textctrl.cpp index 91ad453853..c4e85c8f19 100644 --- a/src/msw/textctrl.cpp +++ b/src/msw/textctrl.cpp @@ -178,6 +178,10 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id, if (m_windowStyle & wxTE_PASSWORD) // hidden input msStyle |= ES_PASSWORD; + if (m_windowStyle & wxTE_AUTO_SCROLL) + msStyle |= ES_AUTOHSCROLL; + + // we always want the characters and the arrows m_lDlgCode = DLGC_WANTCHARS | DLGC_WANTARROWS;