]> git.saurik.com Git - wxWidgets.git/commitdiff
add wxTE_AUTO_SCROLL
authorUnknown (MT) <nobody@localhost>
Tue, 29 Feb 2000 08:14:01 +0000 (08:14 +0000)
committerUnknown (MT) <nobody@localhost>
Tue, 29 Feb 2000 08:14:01 +0000 (08:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/textctrl.cpp

index 91ad4538531b32592f527b9a343fdc850e7fcd39..c4e85c8f196e3309298a9c426474aaf9a143fdbe 100644 (file)
@@ -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;