mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Bug 1038930 - Ensure that touches from different touch event types are not treated as equal. r=smaug
This commit is contained in:
parent
d8bbf89c78
commit
9f8eabeb1c
@ -131,7 +131,8 @@ Touch::Equals(Touch* aTouch)
|
||||
mForce == aTouch->Force() &&
|
||||
mRotationAngle == aTouch->RotationAngle() &&
|
||||
mRadius.x == aTouch->RadiusX() &&
|
||||
mRadius.y == aTouch->RadiusY();
|
||||
mRadius.y == aTouch->RadiusY() &&
|
||||
mMessage == aTouch->mMessage;
|
||||
}
|
||||
|
||||
JSObject*
|
||||
|
Loading…
Reference in New Issue
Block a user