mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-29 02:12:54 +08:00
Merge pull request #209 from Lucas7yoshi/master
Order clips in ycd files alphabetically to improve readability
This commit is contained in:
commit
e39ac3afd8
@ -138,7 +138,7 @@ namespace CodeWalker.Forms
|
|||||||
|
|
||||||
if (ycd?.ClipMapEntries != null)
|
if (ycd?.ClipMapEntries != null)
|
||||||
{
|
{
|
||||||
foreach (var cme in ycd.ClipMapEntries)
|
foreach (var cme in ycd.ClipMapEntries.OrderBy(x => x.Clip?.ShortName ?? x.Hash.ToString())
|
||||||
{
|
{
|
||||||
if (cme != null)
|
if (cme != null)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user