]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/scrolwin.cpp
Compile fix for prop.
[wxWidgets.git] / src / gtk / scrolwin.cpp
index 4e89b7d3907bbae28354a61277056bb688bd745d..a072691442e23fc90796e1440178572b146640e8 100644 (file)
@@ -325,6 +325,11 @@ void wxScrolledWindow::DoSetVirtualSize( int x, int y )
 {
     wxPanel::DoSetVirtualSize( x, y );
     AdjustScrollbars();
+
+#if wxUSE_CONSTRAINTS
+    if (GetAutoLayout())
+        Layout();
+#endif
 }
 
 /*
@@ -378,8 +383,11 @@ void wxScrolledWindow::AdjustScrollbars()
 
         if( m_hAdjust->value + m_hAdjust->page_size > m_hAdjust->upper )
         {
-            m_hAdjust->value = m_hAdjust->upper - m_hAdjust->page_size;
-            m_xScrollPosition = (int)m_hAdjust->value;
+            if (GetChildren().GetCount() == 0)
+            {
+                m_hAdjust->value = m_hAdjust->upper - m_hAdjust->page_size;
+                m_xScrollPosition = (int)m_hAdjust->value;
+            }
         }
     }
 
@@ -395,8 +403,11 @@ void wxScrolledWindow::AdjustScrollbars()
 
         if( m_vAdjust->value + m_vAdjust->page_size > m_vAdjust->upper )
         {
-            m_vAdjust->value = m_vAdjust->upper - m_vAdjust->page_size;
-            m_yScrollPosition = (int)m_vAdjust->value;
+            if (GetChildren().GetCount() == 0)
+            {
+                m_vAdjust->value = m_vAdjust->upper - m_vAdjust->page_size;
+                m_yScrollPosition = (int)m_vAdjust->value;
+            }
         }
     }
 
@@ -816,11 +827,6 @@ void wxScrolledWindow::OnSize(wxSizeEvent& WXUNUSED(event))
         m_targetWindow->SetVirtualSize( m_targetWindow->GetClientSize() );
 
     SetVirtualSize( GetClientSize() );
-
-#if wxUSE_CONSTRAINTS
-    if (GetAutoLayout())
-        Layout();
-#endif
 }
 
 // This calls OnDraw, having adjusted the origin according to the current