Make default font Noto Sans 12.

This commit is contained in:
Pieter-Jan Briers
2019-02-24 15:55:23 +01:00
parent eee4b64c64
commit 1ee556091c

View File

@@ -19,8 +19,8 @@ namespace Content.Client.UserInterface
public NanoStyle() public NanoStyle()
{ {
var resCache = IoCManager.Resolve<IResourceCache>(); var resCache = IoCManager.Resolve<IResourceCache>();
var notoSans14 = new VectorFont(resCache.GetResource<FontResource>("/Nano/NotoSans/NotoSans-Regular.ttf"), var notoSans12 = new VectorFont(resCache.GetResource<FontResource>("/Nano/NotoSans/NotoSans-Regular.ttf"),
14); 12);
var notoSans28 = new VectorFont(resCache.GetResource<FontResource>("/Nano/NotoSans/NotoSans-Regular.ttf"), var notoSans28 = new VectorFont(resCache.GetResource<FontResource>("/Nano/NotoSans/NotoSans-Regular.ttf"),
28); 28);
var notoSansBold16 = var notoSansBold16 =
@@ -88,7 +88,7 @@ namespace Content.Client.UserInterface
new SelectorElement(null, null, null, null), new SelectorElement(null, null, null, null),
new[] new[]
{ {
new StyleProperty("font", notoSans14), new StyleProperty("font", notoSans12),
}), }),
// Window title. // Window title.