]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/vscroll.cpp
include 'Version' in version string, it's what Apple apps do
[wxWidgets.git] / src / generic / vscroll.cpp
index de9cf1fa61c34cce367494781b1a72829621098e..a948519a9aa731cfe20d4b5cc425c890eaf463e4 100644 (file)
@@ -601,7 +601,12 @@ bool wxVarScrollHelperBase::DoScrollToUnit(size_t unit)
     }
     else // scroll the window
     {
+        // Avoid scrolling visible parts of the screen on Mac
+#ifdef __WXMAC__
+        if (m_physicalScrolling && m_targetWindow->IsShownOnScreen())
+#else
         if ( m_physicalScrolling )
+#endif
         {
             wxCoord dx = 0,
                     dy = GetUnitsSize(GetVisibleBegin(), unitFirstOld);