mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-31 14:25:16 +00:00
Changed the system tray font.
This commit is contained in:
@@ -74,7 +74,7 @@ namespace OpenHardwareMonitor.GUI {
|
||||
Color = Config.Get(sensor.Identifier + "/traycolor", defaultColor);
|
||||
|
||||
this.pen = new Pen(Color.FromArgb(96, Color.Black));
|
||||
this.font = new Font(SystemFonts.StatusFont.FontFamily, 9);
|
||||
this.font = new Font(SystemFonts.MessageBoxFont.FontFamily, 9);
|
||||
|
||||
ContextMenuStrip contextMenuStrip = new ContextMenuStrip();
|
||||
ToolStripMenuItem removeItem = new ToolStripMenuItem("Remove");
|
||||
|
@@ -45,6 +45,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
||||
DFI,
|
||||
EPoX,
|
||||
Gigabyte,
|
||||
IBM,
|
||||
MSI,
|
||||
Unkown
|
||||
}
|
||||
|
@@ -200,13 +200,16 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
||||
case "ASUSTeK Computer INC.":
|
||||
manufacturer = Manufacturer.ASUS; break;
|
||||
case "DFI":
|
||||
case "DFI Inc.:":
|
||||
case "DFI Inc.":
|
||||
manufacturer = Manufacturer.DFI; break;
|
||||
case "EPoX COMPUTER CO., LTD":
|
||||
manufacturer = Manufacturer.EPoX; break;
|
||||
case "Gigabyte Technology Co., Ltd.":
|
||||
manufacturer = Manufacturer.Gigabyte; break;
|
||||
case "IBM":
|
||||
manufacturer = Manufacturer.IBM; break;
|
||||
case "MICRO-STAR INTERNATIONAL CO., LTD":
|
||||
case "MICRO-STAR INTERNATIONAL CO.,LTD":
|
||||
manufacturer = Manufacturer.MSI; break;
|
||||
default:
|
||||
manufacturer = Manufacturer.Unkown; break;
|
||||
|
Reference in New Issue
Block a user