зеркало из https://github.com/mozilla/gecko-dev.git
Compress input events in gonk backend (bug 718914, r=cjones).
This commit is contained in:
Родитель
9a26513022
Коммит
d8ac22ec43
|
@ -587,7 +587,10 @@ GeckoInputDispatcher::notifyMotion(nsecs_t eventTime,
|
|||
}
|
||||
{
|
||||
MutexAutoLock lock(mQueueLock);
|
||||
mEventQueue.push(data);
|
||||
if (!mEventQueue.empty() && mEventQueue.back().type == UserInputData::MOTION_DATA)
|
||||
mEventQueue.back() = data;
|
||||
else
|
||||
mEventQueue.push(data);
|
||||
}
|
||||
gAppShell->NotifyNativeEvent();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче