mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[DEVMGR] Hackfix CORE-5643
This commit is contained in:
parent
9159190039
commit
f9739601b3
1 changed files with 5 additions and 0 deletions
|
@ -1206,6 +1206,11 @@ CDeviceView::RefreshDeviceList()
|
||||||
|
|
||||||
// create a new device node and add it to the list
|
// create a new device node and add it to the list
|
||||||
DeviceNode = new CDeviceNode(DeviceInfoData.DevInst, &m_ImageListData);
|
DeviceNode = new CDeviceNode(DeviceInfoData.DevInst, &m_ImageListData);
|
||||||
|
/* FIXME: Start of Hack for CORE-5643 */
|
||||||
|
if (!DeviceNode->IsInstalled())
|
||||||
|
continue;
|
||||||
|
/* FIXME: End of Hack for CORE-5643 */
|
||||||
|
|
||||||
if (DeviceNode->SetupNode())
|
if (DeviceNode->SetupNode())
|
||||||
{
|
{
|
||||||
m_DeviceNodeList.AddTail(DeviceNode);
|
m_DeviceNodeList.AddTail(DeviceNode);
|
||||||
|
|
Loading…
Reference in a new issue