Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@pauldendulk
Copy link
Member

@pauldendulk pauldendulk commented Nov 2, 2025

This also fixes ordering

Before:

.OrderBy(e => e.Group)
.OrderBy(e => e.Index)

After:

.OrderBy(e => e.Group)
.ThenBy(e => e.Index)

@pauldendulk pauldendulk added the PR type: πŸ› Fix A bug fix or patch for existing functionality. label Nov 2, 2025
@pauldendulk pauldendulk merged commit f480757 into main Nov 2, 2025
5 checks passed
@pauldendulk pauldendulk deleted the fix/layer-collection branch November 2, 2025 11:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

PR type: πŸ› Fix A bug fix or patch for existing functionality.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

LayerCollection is not thread-safe and causes IndexOutOfRangeException

2 participants