]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/themes/win32.cpp
removed 68K targets and preferences and renamed output libraries
[wxWidgets.git] / src / univ / themes / win32.cpp
index d17179d9b81617e4ba09b34bd87394d842b3553c..ab245bd069970be6a0cb2a518c6b0fba1f4359df 100644 (file)
@@ -4160,12 +4160,12 @@ bool wxWin32ScrollBarInputHandler::HandleMouseMove(wxInputConsumer *control,
         wxPoint pos = event.GetPosition();
         if (scrollbar->HasFlag( wxVERTICAL ))
         {
-            if (pos.x > -20 && pos.x < scrollbar->GetSize().x+20)
+            if (pos.x > -40 && pos.x < scrollbar->GetSize().x+40)
                pos.x = 5;
         }
         else
         {
-            if (pos.y > -20 && pos.y < scrollbar->GetSize().y+20)
+            if (pos.y > -40 && pos.y < scrollbar->GetSize().y+40)
                pos.y = 5;
         }
         ht = m_renderer->HitTestScrollbar(scrollbar, pos );