wineconsole: Allow to select popup menu entries with the right mouse button.

oldstable
Peter Oberndorfer 2010-09-22 19:29:53 +02:00 committed by Alexandre Julliard
parent 476552c5b5
commit 6191e42a0f
1 changed files with 1 additions and 1 deletions

View File

@ -1177,7 +1177,7 @@ static LRESULT CALLBACK WCUSER_Proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM
pt.y = (short)HIWORD(lParam);
ClientToScreen(hWnd, &pt);
WCUSER_SetMenuDetails(data, PRIVATE(data)->hPopMenu);
TrackPopupMenu(PRIVATE(data)->hPopMenu, TPM_LEFTALIGN|TPM_TOPALIGN,
TrackPopupMenu(PRIVATE(data)->hPopMenu, TPM_LEFTALIGN|TPM_TOPALIGN|TPM_RIGHTBUTTON,
pt.x, pt.y, 0, hWnd, NULL);
}
else