Sort Custom Formats by name

(cherry picked from commit e9bb1d52a72b20a58d1a672ecfa3797eda6f081a)
This commit is contained in:
Bogdan committed 2023-10-29 01:22:19 +03:00
1 parent 2c8e0b1ca4
commit 4cd45ecc21
1 file changed
+1 -1
@@ -142,7 +142,7 @@ private static List<CustomFormat> ParseCustomFormat(CustomFormatInput input, Lis
}
}
return matches;
return matches.OrderBy(x => x.Name).ToList();
}
private static List<CustomFormat> ParseCustomFormat(BookFile bookFile, Author author, List<CustomFormat> allCustomFormats)