]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlwin.cpp
More samples makefiles
[wxWidgets.git] / src / html / htmlwin.cpp
index ebc7e3f2eb71742ede8ff1fcdd8489e17c5448c8..7c08bbbd3f6b54a104974b871013e7c7788ee93b 100644 (file)
@@ -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
            }
     }