]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/stattext.cpp
Applied patch #421073 (making setup options work)
[wxWidgets.git] / src / msw / stattext.cpp
index c4a61fd1131c917044e064d2e6608ab25860af49..8c39245ce434dbef07a75dc9391bd94f6c079c4a 100644 (file)
@@ -57,7 +57,10 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
 
   m_windowStyle = style;
 
-  long msStyle = WS_CHILD | WS_VISIBLE /* | WS_CLIPSIBLINGS */ ;
+  long msStyle = WS_CHILD | WS_VISIBLE;
+
+  if ( m_windowStyle & wxCLIP_SIBLINGS )
+    msStyle |= WS_CLIPSIBLINGS;
   if (m_windowStyle & wxALIGN_CENTRE)
     msStyle |= SS_CENTER;
   else if (m_windowStyle & wxALIGN_RIGHT)