diff options
author | Jeff Brown <jeffbrown@google.com> | 2011-06-28 20:17:59 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-06-28 20:17:59 -0700 |
commit | 771e5828e88dd10b56a9ca83bf66127b7a0287ed (patch) | |
tree | 21235ee8621b36259dcae25f6dc20b5bda436d5c /libs/ui | |
parent | 30f659aae9b8c7e56da0128f4627dceb42a89f64 (diff) | |
parent | 7832080b5aa548602bdf01287ef67b88de5be58c (diff) | |
download | frameworks_native-771e5828e88dd10b56a9ca83bf66127b7a0287ed.zip frameworks_native-771e5828e88dd10b56a9ca83bf66127b7a0287ed.tar.gz frameworks_native-771e5828e88dd10b56a9ca83bf66127b7a0287ed.tar.bz2 |
Merge "Improve input event consistency invariants."
Diffstat (limited to 'libs/ui')
-rw-r--r-- | libs/ui/InputTransport.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ui/InputTransport.cpp b/libs/ui/InputTransport.cpp index ffdfe66..c46d6f4 100644 --- a/libs/ui/InputTransport.cpp +++ b/libs/ui/InputTransport.cpp @@ -443,7 +443,8 @@ status_t InputPublisher::appendMotionSample( if (! mPinned || ! mMotionEventSampleDataTail) { LOGE("channel '%s' publisher ~ Cannot append motion sample because there is no current " - "AMOTION_EVENT_ACTION_MOVE event.", mChannel->getName().string()); + "AMOTION_EVENT_ACTION_MOVE or AMOTION_EVENT_ACTION_HOVER_MOVE event.", + mChannel->getName().string()); return INVALID_OPERATION; } |