[0.4.13][WIN32SS] Fix regression CORE-16306 PR-1943

Symptom:
The menu popup position for language selection in UltraIso regressed

It regressed by 0.4.13-dev-791-g
a59df3858c

Many thanks to the author Mark Jansen.

The fix has not been committed to master yet, but I hope
the PR will be merged during the next days as well.
This commit is contained in:
Joachim Henze 2019-10-12 03:35:47 +02:00
parent 0a03b36aee
commit 609f2aeeb7

View file

@ -1480,7 +1480,8 @@ MENU_AdjustMenuItemRect(PMENU menu, PRECTL rect)
static ITEM *MENU_FindItemByCoords( MENU *menu, POINT pt, UINT *pos )
{
ITEM *item;
UINT i, cx, cy;
UINT i;
INT cx, cy;
RECT rect;
PWND pWnd = ValidateHwndNoErr(menu->hWnd);
@ -2938,7 +2939,7 @@ static BOOL MENU_MoveRect(UINT flags, INT* x, INT* y, INT width, INT height, con
static BOOL FASTCALL MENU_ShowPopup(PWND pwndOwner, PMENU menu, UINT id, UINT flags,
INT x, INT y, const RECT* pExclude)
{
UINT width, height;
INT width, height;
POINT ptx;
PMONITOR monitor;
PWND pWnd;
@ -3410,7 +3411,7 @@ static PMENU FASTCALL MENU_ShowSubPopup(PWND WndOwner, PMENU Menu, BOOL SelectFi
RECT rc;
rc.left = Item->xItem;
rc.top = Item->yItem;
rc.right = Item->cxItem; // Do this for now......
rc.right = Item->cxItem;
rc.bottom = Item->cyItem;
MENU_AdjustMenuItemRect(Menu, &rc);