We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d76857 commit dc1e781Copy full SHA for dc1e781
1 file changed
OpenHardwareMonitorLib/Hardware/Computer.cs
@@ -167,7 +167,9 @@ public bool IsGpuEnabled
167
{
168
Add(new AmdGpuGroup(_settings));
169
Add(new NvidiaGroup(_settings));
170
- Add(new IntelGpuGroup(GetIntelCpus(), _settings));
+
171
+ if (_cpuEnabled)
172
+ Add(new IntelGpuGroup(GetIntelCpus(), _settings));
173
}
174
else
175
@@ -526,7 +528,9 @@ private void AddGroups()
526
528
527
529
530
531
532
533
534
535
536
if (_controllerEnabled)
0 commit comments