1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 23:04:09 +02:00

Added font failovers for missing fonts

This commit is contained in:
Brian Fiete 2020-05-25 11:02:09 -07:00
parent 33286fb804
commit 1010e8ac83
2 changed files with 44 additions and 5 deletions

View file

@ -119,7 +119,7 @@ namespace IDE
public class IDEApp : BFApp
{
public static String sRTVersionStr = "042";
public const String cVersion = "0.42.4";
public const String cVersion = "0.42.5";
#if BF_PLATFORM_WINDOWS
public static readonly String sPlatform64Name = "Win64";
@ -10634,6 +10634,8 @@ namespace IDE
#endif
}
Font.AddFontFailEntry("Segoe UI", scope String()..AppendF("{}fonts/NotoSans-Regular.ttf", mInstallDir));
DarkTheme aTheme = new DarkTheme();
aTheme.Init();
ThemeFactory.mDefault = aTheme;