[Webkit-unassigned] [Bug 29332] REGRESSION (r48446): While a <select> popup menu is open, the rest of the WebView doesn't respond to mouse move events
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Sep 18 12:44:45 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=29332
--- Comment #5 from Sam Weinig <sam at webkit.org> 2009-09-18 12:44:45 PDT ---
(From update of attachment 39778)
> +static void translatePoint(LPARAM& lParam, HWND from, HWND to) {
> + POINT pt;
> + pt.x = (short)LOWORD(lParam);
> + pt.y = (short)HIWORD(lParam);
> + ::MapWindowPoints(from, to, &pt, 1);
> + lParam = MAKELPARAM(pt.x, pt.y);
> +}
The { should be on a new line.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list