Bug 1171073 - Suppress content scrolling issue on 64-bit platforms. r=kats

This commit is contained in:
Maksim Lebedev 2015-06-26 08:45:00 +02:00
parent 7a31276561
commit f741e102c2

View File

@ -940,8 +940,8 @@ WinUtils::GetMouseInputSource()
bool
WinUtils::GetIsMouseFromTouch(uint32_t aEventType)
{
const int MOZ_T_I_SIGNATURE = TABLET_INK_TOUCH | TABLET_INK_SIGNATURE;
const int MOZ_T_I_CHECK_TCH = TABLET_INK_TOUCH | TABLET_INK_CHECK;
const uint32_t MOZ_T_I_SIGNATURE = TABLET_INK_TOUCH | TABLET_INK_SIGNATURE;
const uint32_t MOZ_T_I_CHECK_TCH = TABLET_INK_TOUCH | TABLET_INK_CHECK;
return ((aEventType == NS_MOUSE_MOVE ||
aEventType == NS_MOUSE_BUTTON_DOWN ||
aEventType == NS_MOUSE_BUTTON_UP) &&