https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ab0bbeb1266c8087493b46975bc33918ccebecea
commit ab0bbeb1266c8087493b46975bc33918ccebecea Author: Eric Kohl <[email protected]> AuthorDate: Sat Apr 10 15:50:37 2021 +0200 Commit: Eric Kohl <[email protected]> CommitDate: Sat Apr 10 15:50:37 2021 +0200 [DEVMGR] UpdateDevInfo: Enable built-in property pages by default CORE-17532 --- dll/win32/devmgr/properties/advprop.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dll/win32/devmgr/properties/advprop.cpp b/dll/win32/devmgr/properties/advprop.cpp index bfbffff6853..4cd508c9c82 100644 --- a/dll/win32/devmgr/properties/advprop.cpp +++ b/dll/win32/devmgr/properties/advprop.cpp @@ -2224,9 +2224,9 @@ GetParentNode: DeviceInfoData = &dap->DeviceInfoData; } - dap->HasDriverPage = FALSE; - dap->HasResourcePage = FALSE; - dap->HasPowerPage = FALSE; + dap->HasDriverPage = TRUE; + dap->HasResourcePage = TRUE; + dap->HasPowerPage = TRUE; if (IsDriverInstalled(DeviceInfoData->DevInst, dap->hMachine, &bDrvInstalled) &&
