Changed a few context menu items to display a radio option style. Added additional information from the SMBIOS to the report.

This commit is contained in:
Michael Möller
2012-08-11 21:32:59 +00:00
parent e77e879780
commit e32ce0060d
4 changed files with 89 additions and 11 deletions

View File

@@ -647,6 +647,7 @@ namespace OpenHardwareMonitor.GUI {
if (i <= control.MaxSoftwareValue &&
i >= control.MinSoftwareValue) {
MenuItem item = new MenuItem(i + " %");
item.RadioCheck = true;
manualItem.MenuItems.Add(item);
item.Checked = control.ControlMode == ControlMode.Software &&
Math.Round(control.SoftwareValue) == i;