From 42a7829864cd6cf2dff2a21f9dbed208b154c6f7 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 22 Jun 2017 20:52:01 -0400 Subject: Fix some major Appscape bugs. --- ShiftOS.WinForms/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ShiftOS.WinForms/Commands.cs') diff --git a/ShiftOS.WinForms/Commands.cs b/ShiftOS.WinForms/Commands.cs index 23b8f19..c7d8f5b 100644 --- a/ShiftOS.WinForms/Commands.cs +++ b/ShiftOS.WinForms/Commands.cs @@ -157,7 +157,7 @@ namespace ShiftOS.Engine //print all unique namespaces. foreach (var n in TerminalBackend.Commands.Where(x => !(x is TerminalBackend.WinOpenCommand) && Shiftorium.UpgradeInstalled(x.Dependencies) && x.CommandInfo.hide == false).OrderBy(x => x.CommandInfo.name)) { - sb.Append(n.CommandInfo.name); + sb.Append(" - " + n.CommandInfo.name); if (!string.IsNullOrWhiteSpace(n.CommandInfo.description)) if (Shiftorium.UpgradeInstalled("help_description")) sb.Append(" - " + n.CommandInfo.description); -- cgit v1.2.3