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
This commit is contained in:
Robert Roebling 2006-08-27 15:42:09 +00:00
parent fb8bf382fb
commit 1e7373d0d3

View 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;