]> git.saurik.com Git - wxWidgets.git/commitdiff
fix handling of long lines in wxGridCellAutoWrapStringRenderer
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 25 Feb 2009 00:09:23 +0000 (00:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 25 Feb 2009 00:09:23 +0000 (00:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/gridctrl.cpp

index 8db47ed3cf08964d9ae57d8d15920eca12bdad85..3098fd5ad597c4a6e4f46c2c26108290a694879a 100644 (file)
@@ -280,9 +280,19 @@ wxGridCellAutoWrapStringRenderer::GetTextLines(wxGrid& grid,
         dc.GetTextExtent(tok, &x, &y);
         if ( curr_x + x > max_x)
         {
-            lines.Add( wxString(thisline) );
-            thisline = tok;
-            curr_x=x;
+            if ( curr_x == 0 )
+            {
+                // this means that a single token is wider than the maximal
+                // width -- still use it as is as we need to show at least the
+                // part of it which fits
+                lines.Add(tok);
+            }
+            else
+            {
+                lines.Add(thisline);
+                thisline = tok;
+                curr_x = x;
+            }
         }
         else
         {