Commit eb9960f1 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Fix a regression in IE where the Favourites menu didn't appear

correctly because the height and width were swapped in the pager control.
parent bf7596fd
...@@ -1227,9 +1227,9 @@ PAGER_Size (PAGER_INFO* infoPtr, INT type, INT x, INT y) ...@@ -1227,9 +1227,9 @@ PAGER_Size (PAGER_INFO* infoPtr, INT type, INT x, INT y)
TRACE("[%p] %d,%d\n", infoPtr->hwndSelf, x, y); TRACE("[%p] %d,%d\n", infoPtr->hwndSelf, x, y);
if (infoPtr->dwStyle & PGS_HORZ) if (infoPtr->dwStyle & PGS_HORZ)
infoPtr->nHeight = x; infoPtr->nHeight = y;
else else
infoPtr->nWidth = y; infoPtr->nWidth = x;
return PAGER_RecalcSize(infoPtr); return PAGER_RecalcSize(infoPtr);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment