Change-Id: I569f89fb556cc9da55b78defbae5bd6d44aad2fd
}
else
{
- if (duration > 100000)
+ if (duration > 3000)
{
- __pTouchResult->SetText(L"The duration should be less than or equal to 100000.");
- __pDuration->SetText(L"100000");
- __pLongPressGesture->SetDuration(100000);
+ __pTouchResult->SetText(L"The duration should be less than or equal to 3000.");
+ __pDuration->SetText(L"3000");
+ __pLongPressGesture->SetDuration(3000);
}
else
{
}
else
{
- if (interval > 100000)
+ if (interval > 1000)
{
- __pTouchResult->SetText(L"The interval should be less than or equal to 100000!");
- __pInterval->SetText(L"100000");
- __pTapGesture->SetTapInterval(100000);
+ __pTouchResult->SetText(L"The interval should be less than or equal to 1000!");
+ __pInterval->SetText(L"1000");
+ __pTapGesture->SetTapInterval(1000);
}
else if (interval < 200)
{