diff --git a/reactos/base/applications/devmgmt/mainwnd.c b/reactos/base/applications/devmgmt/mainwnd.c index b7e81c392c9..7c00e7a5189 100644 --- a/reactos/base/applications/devmgmt/mainwnd.c +++ b/reactos/base/applications/devmgmt/mainwnd.c @@ -243,7 +243,9 @@ MainWndCommand(PMAIN_WND_INFO Info, case IDC_REFRESH: { - // refresh treeview + HTREEITEM hRoot = InitTreeView(Info); + if (hRoot) + ListDevicesByType(Info, hRoot); } break;