Merge "Release the previous key if multi touch input is started"

main
Tadashi G. Takaoka 2011-04-22 05:33:38 -07:00 committed by Android (Google) Code Review
commit 19576c33cd
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class PointerTrackerQueue {
if (t.isModifier()) { if (t.isModifier()) {
oldestPos++; oldestPos++;
} else { } else {
t.onPhantomUpEvent(t.getLastX(), t.getLastY(), eventTime, false); t.onPhantomUpEvent(t.getLastX(), t.getLastY(), eventTime, true);
queue.remove(oldestPos); queue.remove(oldestPos);
} }
} }