aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/TriSheet.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Applications/TriSheet.cs')
-rw-r--r--ShiftOS.WinForms/Applications/TriSheet.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/ShiftOS.WinForms/Applications/TriSheet.cs b/ShiftOS.WinForms/Applications/TriSheet.cs
index 48c60ed..2eaf6df 100644
--- a/ShiftOS.WinForms/Applications/TriSheet.cs
+++ b/ShiftOS.WinForms/Applications/TriSheet.cs
@@ -15,7 +15,7 @@ using ShiftOS.Objects.ShiftFS;
namespace ShiftOS.WinForms.Applications
{
[WinOpen("trisheet")]
- [AppscapeEntry("TriSheet", "Part of the trilogy of office applications for enhancement of your system. TriSheet is easliy the best spreadsheet program out there for ShiftOS.", 1024, 750, "file_skimmer;textpad", "Office")]
+ [AppscapeEntry("trisheet", "TriSheet", "Part of the trilogy of office applications for enhancement of your system. TriSheet is easliy the best spreadsheet program out there for ShiftOS.", 1024, 750, "file_skimmer;textpad", "Office")]
[DefaultTitle("TriSheet")]
[Launcher("TriSheet", false, null, "Office")]
public partial class TriSheet : UserControl, IShiftOSWindow
@@ -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();
}