mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-09-05 08:45:38 +00:00
Fixed some hardware sorting issue in the gadget. Hardware with the same type and name would be added to the same section.
This commit is contained in:
@@ -486,7 +486,7 @@ namespace OpenHardwareMonitor.GUI {
|
||||
if (x.HardwareType != y.HardwareType)
|
||||
return x.HardwareType.CompareTo(y.HardwareType);
|
||||
|
||||
return x.Name.CompareTo(y.Name);
|
||||
return x.Identifier.CompareTo(y.Identifier);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user