mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:55:42 +00:00
[SHELL32] Fix SHBrowseForFolder new UI layout (#3533)
CORE-17507 - Change layout of resource dialogs IDD_BROWSE_FOR_FOLDER_NEW. - Delete IDC_BROWSE_FOR_FOLDER_FOLDER control. - Fix focus. - Add ES_NOHIDESEL style to IDC_BROWSE_FOR_FOLDER_FOLDER_TEXT control. - Add TVS_SHOWSELALWAYS style to IDC_BROWSE_FOR_FOLDER_TREEVIEW control. - Fix assertion failure in LayoutUpdate function in <layout.h>.
This commit is contained in:
parent
e1a5ba188e
commit
2d066c93fe
36 changed files with 100 additions and 103 deletions
|
@ -189,7 +189,7 @@ LayoutUpdate(HWND ignored1, LAYOUT_DATA *pData, LPCVOID ignored2, UINT ignored3)
|
|||
UNREFERENCED_PARAMETER(ignored1);
|
||||
UNREFERENCED_PARAMETER(ignored2);
|
||||
UNREFERENCED_PARAMETER(ignored3);
|
||||
if (pData == NULL)
|
||||
if (pData == NULL || !pData->m_hwndParent)
|
||||
return;
|
||||
assert(IsWindow(pData->m_hwndParent));
|
||||
_layout_ArrangeLayout(pData);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue