]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/scrlwing.cpp
added closing parenthesis inside comment, no real changes
[wxWidgets.git] / src / generic / scrlwing.cpp
index 4578f661933037ec4b1cac8dc855217d3ffb19ac..7add087eda7d460a22bb9d4d2f4e39e12f81d13c 100644 (file)
@@ -365,7 +365,11 @@ void wxScrollHelper::SetScrollbars(int pixelsPerUnitX,
 
     // The above should arguably be deprecated, this however we still need.
 
-    m_targetWindow->SetVirtualSize( w, h );
+    // take care not to set 0 virtual size, 0 means that we don't have any
+    // scrollbars and hence we should use the real size instead of the virtual
+    // one which is indicated by using wxDefaultCoord
+    m_targetWindow->SetVirtualSize( w ? w : wxDefaultCoord,
+                                    h ? h : wxDefaultCoord);
 
     if (do_refresh && !noRefresh)
         m_targetWindow->Refresh(true, GetScrollRect());