Changed the system tray font.

This commit is contained in:
Michael Möller
2010-03-04 20:26:56 +00:00
parent 256570098e
commit 6ba8cc5dd5
3 changed files with 6 additions and 2 deletions

View File

@@ -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");

View File

@@ -45,6 +45,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
DFI,
EPoX,
Gigabyte,
IBM,
MSI,
Unkown
}

View File

@@ -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;