mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Case-insensitive sorting
This commit is contained in:
parent
bf64771da5
commit
48865cfec4
1 changed files with 3 additions and 0 deletions
|
|
@ -1120,6 +1120,9 @@ begin
|
|||
NextChunkInit(Chunk1);
|
||||
NextChunkInit(Chunk2);
|
||||
|
||||
if (Chunk1.Category = cNone) and (Chunk2.Category = cNone) then
|
||||
Exit;
|
||||
|
||||
if Chunk1.Category <> Chunk2.Category then
|
||||
if Chunk1.Category < Chunk2.Category then
|
||||
Exit(-1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue