]> git.saurik.com Git - wxWidgets.git/commitdiff
<br><br><br> is now handled correctly, e.g. empty lines are inserted (unlike <p>...
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 11 Nov 1999 16:08:52 +0000 (16:08 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 11 Nov 1999 16:08:52 +0000 (16:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4476 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/m_layout.cpp

index 38f89940e6f38185223743a738a69beafe6ffd33..af040afe9514901e20b478479533e23a0bfd91d2 100644 (file)
@@ -39,7 +39,7 @@ TAG_HANDLER_BEGIN(P, "P")
         if (m_WParser -> GetContainer() -> GetFirstCell() != NULL) {
             m_WParser -> CloseContainer();
             m_WParser -> OpenContainer();
-    }
+        }
         m_WParser -> GetContainer() -> SetIndent(m_WParser -> GetCharHeight(), wxHTML_INDENT_TOP);
         m_WParser -> GetContainer() -> SetAlign(tag);
         return FALSE;
@@ -60,6 +60,7 @@ TAG_HANDLER_BEGIN(BR, "BR")
         c = m_WParser -> OpenContainer();
         c -> SetAlignHor(al);
         c -> SetAlign(tag);
+        c -> SetMinHeight(m_WParser -> GetCharHeight());
         return FALSE;
     }