Commit b3f4bc87 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard

Reset disabled style for the dialog boxes set on property pages.

parent 62451da5
......@@ -596,6 +596,7 @@ static int PROPSHEET_CreatePage(HWND hwndParent,
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_CAPTION;
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_SYSMENU;
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_POPUP;
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_DISABLED;
}
else
{
......@@ -604,6 +605,7 @@ static int PROPSHEET_CreatePage(HWND hwndParent,
pTemplate->style &= ~WS_CAPTION;
pTemplate->style &= ~WS_SYSMENU;
pTemplate->style &= ~WS_POPUP;
pTemplate->style &= ~WS_DISABLED;
}
if (psInfo->proppage[index].useCallback)
......
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