put this back when "fonts" exists
This commit is contained in:
parent
134f700899
commit
8cb518844f
1 changed files with 3 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue