Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8150d83

Browse files
committedApr 8, 2025·
Fix: Fixed an issue where name sorting was case sensitive
1 parent 2747d23 commit 8150d83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/Files.App/Helpers/NaturalStringComparer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public sealed class NaturalStringComparer
88
{
99
public static IComparer<object> GetForProcessor()
1010
{
11-
return new NaturalComparer(StringComparison.CurrentCulture);
11+
return new NaturalComparer(StringComparison.CurrentCultureIgnoreCase);
1212
}
1313

1414
/// <summary>

0 commit comments

Comments
 (0)
Please sign in to comment.