[REGEDIT]

When the root item in the treeview is selected, remove all items from the listview and wipe the address bar and status bar.

svn path=/trunk/; revision=70402
This commit is contained in:
Eric Kohl 2015-12-19 19:18:21 +00:00
parent c6356f2a1a
commit 46c7cd186e

View file

@ -348,6 +348,12 @@ UpdateAddress(HTREEITEM hItem, HKEY hRootKey, LPCWSTR pszPath)
}
}
}
else
{
(void)ListView_DeleteAllItems(g_pChildWnd->hListWnd);
SendMessageW(hStatusBar, SB_SETTEXTW, 0, (LPARAM)NULL);
SendMessageW(g_pChildWnd->hAddressBarWnd, WM_SETTEXT, 0, (LPARAM)NULL);
}
}
/*******************************************************************************