Bug 493037 - "aNumLines must be non-zero" assertion hit on mouse wheel input. r=emaijala.

This commit is contained in:
Jim Mathies 2009-06-30 01:02:07 -05:00
Родитель ba8842a8b0
Коммит cf9b808287
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -5012,6 +5012,9 @@ PRBool nsWindow::OnMouseWheel(UINT msg, WPARAM wParam, LPARAM lParam, PRBool& ge
}
}
if (!scrollEvent.delta)
break;
scrollEvent.isShift = IS_VK_DOWN(NS_VK_SHIFT);
scrollEvent.isControl = IS_VK_DOWN(NS_VK_CONTROL);
scrollEvent.isMeta = PR_FALSE;