Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Files.App/Helpers/NaturalStringComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public sealed class NaturalStringComparer
{
public static IComparer<object> GetForProcessor()
{
return new NaturalComparer(StringComparison.CurrentCulture);
return new NaturalComparer(StringComparison.CurrentCultureIgnoreCase);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Btw this is instantiated every time SortingHelper.OrderFileList is called. We prob should create a static field for this (if null, for the first time, create an instance).

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please start an issue so we can track that?

}

/// <summary>
Expand Down
Loading