Is there a reason why in DragAndDropContainer we need to wait 700ms for check a external Drag?
if (canDoExternalDrag)
{
auto now = Time::getCurrentTime();
if (getCurrentlyOver() != nullptr)
lastTimeOverTarget = now;
else if (now > lastTimeOverTarget + RelativeTime::milliseconds (700))
checkForExternalDrag (details, screenPos);
}
