Revert "fixed bug with location::State eating clicks on direction arrow even if it's not clickable."

This reverts commit 860421ec575ba8e442ddbfdad5b2e0c5eb6f7f20.
This commit is contained in:
vng 2012-10-25 20:22:54 +03:00 committed by Alex Zolotarev
parent 8f75a40346
commit 4d2d784943

View file

@ -402,8 +402,6 @@ namespace location
bool State::hitTest(m2::PointD const & pt) const
{
if (!m_framework->GetNavigator().DoSupportRotation())
return false;
double radius = m_arrowHeight * m_controller->GetVisualScale();
return m_hasCompass && (pt.SquareLength(pivot()) <= my::sq(radius));
}