Use 9.75pt as default font size

This commit is contained in:
Jaex 2021-08-23 23:50:24 +03:00
parent d865386f8f
commit 0342f4dc52

View file

@ -132,9 +132,9 @@ public Color BorderColor
[Editor(typeof(MyColorEditor), typeof(UITypeEditor)), TypeConverter(typeof(MyColorConverter))]
public Color MenuCheckBackgroundColor { get; set; }
public Font MenuFont { get; set; } = new Font("Segoe UI", 10);
public Font MenuFont { get; set; } = new Font("Segoe UI", 9.75f);
public Font ContextMenuFont { get; set; } = new Font("Segoe UI", 10);
public Font ContextMenuFont { get; set; } = new Font("Segoe UI", 9.75f);
public int ContextMenuOpacity { get; set; } = 100;