in case of animation the m_focusedElement could "sneak" away of the touch, so we should check this in onTapEnded.

This commit is contained in:
Siarhei Rachytski 2012-10-01 12:54:47 +03:00 committed by Alex Zolotarev
parent 0109b47987
commit df2bd863b6

View file

@ -83,6 +83,13 @@ namespace gui
{
if (m_focusedElement)
{
// re-checking, whether we are above the gui element.
if (!m_focusedElement->hitTest(pt))
{
m_focusedElement->onTapCancelled(pt);
m_LastTapCancelled = true;
}
if (!m_LastTapCancelled)
m_focusedElement->onTapEnded(pt);