]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
corrected loop for calculating the proper updatergn taking into account only real...
[wxWidgets.git] / src / msw / textctrl.cpp
index 83c92f0d9b4a30018a891a2f59643958f4673371..ec254dfb8539433d755eae95f7e9da3c9db5f6e3 100644 (file)
@@ -159,7 +159,11 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
 
     // translate wxWin style flags to MSW ones, checking for consistency while
     // doing it
-    long msStyle = ES_LEFT | WS_VISIBLE | WS_CHILD | WS_TABSTOP /* | WS_CLIPSIBLINGS */ ;
+    long msStyle = ES_LEFT | WS_VISIBLE | WS_CHILD | WS_TABSTOP;
+
+    if ( m_windowStyle & wxCLIP_SIBLINGS )
+        msStyle |= WS_CLIPSIBLINGS;
+
     if ( m_windowStyle & wxTE_MULTILINE )
     {
         wxASSERT_MSG( !(m_windowStyle & wxTE_PROCESS_ENTER),