Increase timeout in order to catch slower clicks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-03-10 18:09:22 +00:00
parent abd61ebf9b
commit 5a86739df2
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ void ScintillaWX::StartDrag() {
// We defer the starting of the DnD, otherwise the LeftUp of a normal
// click could be lost and the STC will think it is doing a DnD when the
// user just wanted a normal click.
startDragTimer->Start(100, true);
startDragTimer->Start(200, true);
#endif // wxUSE_DRAG_AND_DROP
}

View File

@ -257,7 +257,7 @@ void ScintillaWX::StartDrag() {
// We defer the starting of the DnD, otherwise the LeftUp of a normal
// click could be lost and the STC will think it is doing a DnD when the
// user just wanted a normal click.
startDragTimer->Start(100, true);
startDragTimer->Start(200, true);
#endif // wxUSE_DRAG_AND_DROP
}