]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
always set flat toolbar style, even under XP with themes: this is necessary or separa...
[wxWidgets.git] / src / msw / textctrl.cpp
index 7151acb27dec4dc928ba40675328e169c6a17e63..bcabaabb7d0cb12d81419a78967082e49a36fd9e 100644 (file)
@@ -1960,7 +1960,7 @@ wxSize wxTextCtrl::DoGetBestSize() const
     int hText = cy;
     if ( m_windowStyle & wxTE_MULTILINE )
     {
-        hText *= wxMax(GetNumberOfLines(), 5);
+        hText *= wxMax(wxMin(GetNumberOfLines(), 10), 2); 
     }
     //else: for single line control everything is ok