From: Robert Roebling <robert@roebling.de>
Date: Sun, 27 Aug 2006 15:42:09 +0000 (+0000)
Subject:   Change drag threshhold (why was it multiplied
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1e7373d0d3d2b512c7d0151bcc44016edb6ceaaa

  Change drag threshhold (why was it multiplied
    by 2 before?).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40875 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/src/gtk/settings.cpp b/src/gtk/settings.cpp
index dd756beec0..2dc070401f 100644
--- a/src/gtk/settings.cpp
+++ b/src/gtk/settings.cpp
@@ -533,7 +533,7 @@ int wxSystemSettingsNative::GetMetric( wxSystemMetric index, wxWindow* win )
                              "gtk-dnd-drag-threshold", &drag_threshold, NULL);
             }
 
-            return drag_threshold * 2;
+            return drag_threshold;
 
         // MBN: ditto for icons
         case wxSYS_ICON_X:     return 32;