]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
Various changes to make pop up menus work
[wxWidgets.git] / src / msw / textctrl.cpp
index b5a07c42390cc586a7a3a1d0e308988d997a3ba7..12716ffeb5165b8e13154da8b699a7e2f0b35aaa 100644 (file)
@@ -357,10 +357,16 @@ void wxTextCtrl::AdoptAttributesFromHWND()
 
 WXDWORD wxTextCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const
 {
+    // default border for the text controls is the sunken one
+    if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
+    {
+        style |= wxBORDER_SUNKEN;
+    }
+
     long msStyle = wxControl::MSWGetStyle(style, exstyle);
 
     // default styles
-    msStyle |= ES_LEFT | WS_TABSTOP;
+    msStyle |= ES_LEFT;
 
     if ( style & wxTE_MULTILINE )
     {