forked from organicmaps/organicmaps
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:
parent
0109b47987
commit
df2bd863b6
1 changed files with 7 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue