]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed incorrect layout width caching in wxHtmlContainerCell (patch #1931479)
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 13 Apr 2008 12:28:11 +0000 (12:28 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 13 Apr 2008 12:28:11 +0000 (12:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53159 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/htmlcell.cpp

index 8dbdc9e830f23f5063beca3f3ab6e08480b7dcdd..25099e75c8b430ee49760149569cf6994a626212 100644 (file)
@@ -755,7 +755,9 @@ void wxHtmlContainerCell::Layout(int w)
 {
     wxHtmlCell::Layout(w);
 
-    if (m_LastLayout == w) return;
+    if (m_LastLayout == w)
+        return;
+    m_LastLayout = w;
 
     // VS: Any attempt to layout with negative or zero width leads to hell,
     // but we can't ignore such attempts completely, since it sometimes
@@ -1011,8 +1013,6 @@ void wxHtmlContainerCell::Layout(int w)
     m_MaxTotalWidth += s_indent + ((m_IndentRight < 0) ? (-m_IndentRight * m_Width / 100) : m_IndentRight);
     MaxLineWidth += s_indent + ((m_IndentRight < 0) ? (-m_IndentRight * m_Width / 100) : m_IndentRight);
     if (m_Width < MaxLineWidth) m_Width = MaxLineWidth;
-
-    m_LastLayout = w;
 }
 
 void wxHtmlContainerCell::UpdateRenderingStatePre(wxHtmlRenderingInfo& info,