From d54ed754ae4100c4652d5c43c1aa2fdb768e8d03 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 13 Aug 1999 18:47:07 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3373 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmlwin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/html/htmlwin.cpp b/src/html/htmlwin.cpp index ebc7e3f2eb..7c08bbbd3f 100644 --- a/src/html/htmlwin.cpp +++ b/src/html/htmlwin.cpp @@ -256,7 +256,10 @@ void wxHtmlWindow::CreateLayout() else { GetClientSize(&ClientWidth, &ClientHeight); +#ifndef __WXMSW__ + // VS : this looks extremely ugly under windoze, better fix needed! SetScrollbars(1, 1, 0, ClientHeight * 2); // always on +#endif GetClientSize(&ClientWidth, &ClientHeight); m_Cell -> Layout(ClientWidth); if (ClientHeight < m_Cell -> GetHeight()) { @@ -267,6 +270,7 @@ void wxHtmlWindow::CreateLayout() } else { /* we fit into window, no need for scrollbars */ SetScrollbars(1, 1, 0, 0); // disable... + GetClientSize(&ClientWidth, &ClientHeight); m_Cell -> Layout(ClientWidth); // ...and relayout } } -- 2.47.2