put this back when "fonts" exists

This commit is contained in:
RogueAI42 2017-06-20 19:36:38 +10:00
parent 134f700899
commit 8cb518844f

View file

@ -36,11 +36,10 @@ namespace ShiftOS.WinForms.Applications
public void ResetFonts()
{
#if YALL_GOT_ANY_MORE_OF_THEM_NONEXISTENT_CONTROLS
fonts.Items.Clear();
foreach (var font in FontFamily.Families)
{
fonts.Items.Add(font.Name);
}
fonts.Items.AddRange(FontFamily.Families.Select(f => f.Name));
#endif
UpdateUI();
}