]> git.saurik.com Git - wxWidgets.git/commitdiff
Change drag threshhold (why was it multiplied
authorRobert Roebling <robert@roebling.de>
Sun, 27 Aug 2006 15:42:09 +0000 (15:42 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 27 Aug 2006 15:42:09 +0000 (15:42 +0000)
    by 2 before?).

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

src/gtk/settings.cpp

index dd756beec056b9a30d747b4ed9d57632baa5f768..2dc070401f4e8da92ec083dc1057f3f8341f5494 100644 (file)
@@ -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;