mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:53:02 +00:00
[WIN32SS][NTUSER] Fix popup menu freezing
This commit is contained in:
parent
2b526bceac
commit
03adec8141
1 changed files with 2 additions and 1 deletions
|
@ -2803,7 +2803,8 @@ static BOOL MENU_InitPopup( PWND pWndOwner, PMENU menu, UINT flags )
|
||||||
if (flags & TPM_LAYOUTRTL || pWndOwner->ExStyle & WS_EX_LAYOUTRTL)
|
if (flags & TPM_LAYOUTRTL || pWndOwner->ExStyle & WS_EX_LAYOUTRTL)
|
||||||
ex_style |= WS_EX_LAYOUTRTL;
|
ex_style |= WS_EX_LAYOUTRTL;
|
||||||
|
|
||||||
RtlInitUnicodeString(&ClassName, WC_MENU);
|
ClassName.Buffer = WC_MENU;
|
||||||
|
ClassName.Length = 0;
|
||||||
|
|
||||||
RtlZeroMemory(&WindowName, sizeof(WindowName));
|
RtlZeroMemory(&WindowName, sizeof(WindowName));
|
||||||
RtlZeroMemory(&Cs, sizeof(Cs));
|
RtlZeroMemory(&Cs, sizeof(Cs));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue