From 72ef08c782584b62895965680366c6e165517a2d Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 22 May 2000 08:28:58 +0000 Subject: [PATCH] Fixed OnSize corruption problem git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmlwin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/html/htmlwin.cpp b/src/html/htmlwin.cpp index e1afd4d9fd..bddad7e051 100644 --- a/src/html/htmlwin.cpp +++ b/src/html/htmlwin.cpp @@ -483,6 +483,7 @@ void wxHtmlWindow::OnSize(wxSizeEvent& event) { wxScrolledWindow::OnSize(event); CreateLayout(); + Refresh(); }