We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376f810 commit 0cc8d54Copy full SHA for 0cc8d54
src/Files.App/Shell/ShellNewMenuHelper.cs
@@ -36,7 +36,7 @@ public static async Task<List<ShellNewEntry>> GetNewContextMenuEntries()
36
if (!newMenuItems.Any(x => ".txt".Equals(x.Extension, StringComparison.OrdinalIgnoreCase)))
37
newMenuItems.Add(await CreateShellNewEntry(".txt", null, null, null));
38
39
- return newMenuItems;
+ return newMenuItems.OrderBy(item => item.Name).ToList();
40
}
41
42
public static async Task<ShellNewEntry> GetNewContextMenuEntryForType(string extension)
0 commit comments