mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-09-02 15:25:22 +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);
|
Color = Config.Get(sensor.Identifier + "/traycolor", defaultColor);
|
||||||
|
|
||||||
this.pen = new Pen(Color.FromArgb(96, Color.Black));
|
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();
|
ContextMenuStrip contextMenuStrip = new ContextMenuStrip();
|
||||||
ToolStripMenuItem removeItem = new ToolStripMenuItem("Remove");
|
ToolStripMenuItem removeItem = new ToolStripMenuItem("Remove");
|
||||||
|
@@ -45,6 +45,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|||||||
DFI,
|
DFI,
|
||||||
EPoX,
|
EPoX,
|
||||||
Gigabyte,
|
Gigabyte,
|
||||||
|
IBM,
|
||||||
MSI,
|
MSI,
|
||||||
Unkown
|
Unkown
|
||||||
}
|
}
|
||||||
|
@@ -200,13 +200,16 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
|||||||
case "ASUSTeK Computer INC.":
|
case "ASUSTeK Computer INC.":
|
||||||
manufacturer = Manufacturer.ASUS; break;
|
manufacturer = Manufacturer.ASUS; break;
|
||||||
case "DFI":
|
case "DFI":
|
||||||
case "DFI Inc.:":
|
case "DFI Inc.":
|
||||||
manufacturer = Manufacturer.DFI; break;
|
manufacturer = Manufacturer.DFI; break;
|
||||||
case "EPoX COMPUTER CO., LTD":
|
case "EPoX COMPUTER CO., LTD":
|
||||||
manufacturer = Manufacturer.EPoX; break;
|
manufacturer = Manufacturer.EPoX; break;
|
||||||
case "Gigabyte Technology Co., Ltd.":
|
case "Gigabyte Technology Co., Ltd.":
|
||||||
manufacturer = Manufacturer.Gigabyte; break;
|
manufacturer = Manufacturer.Gigabyte; break;
|
||||||
|
case "IBM":
|
||||||
|
manufacturer = Manufacturer.IBM; break;
|
||||||
case "MICRO-STAR INTERNATIONAL CO., LTD":
|
case "MICRO-STAR INTERNATIONAL CO., LTD":
|
||||||
|
case "MICRO-STAR INTERNATIONAL CO.,LTD":
|
||||||
manufacturer = Manufacturer.MSI; break;
|
manufacturer = Manufacturer.MSI; break;
|
||||||
default:
|
default:
|
||||||
manufacturer = Manufacturer.Unkown; break;
|
manufacturer = Manufacturer.Unkown; break;
|
||||||
|
Reference in New Issue
Block a user