git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26248
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxHTML:
- improved tables layout algorithm (Tim Kosse)
+- <div> handling fix (Xavier Nodet)
2.5.1
else
c->SetAlignHor(old);
- return TRUE;
+ return true;
}
else
{
- return FALSE;
+ // Same as BR
+ int al = m_WParser->GetContainer()->GetAlignHor();
+ wxHtmlContainerCell *c;
+
+ m_WParser->CloseContainer();
+ c = m_WParser->OpenContainer();
+ c->SetAlignHor(al);
+ c->SetAlign(tag);
+ c->SetMinHeight(m_WParser->GetCharHeight());
+ return false;
}
}