You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Layers are currently sorted by their sortOrder parameter. When layers all have the same sortOrder (which is often the case when no particular order is required), they will then be ordered by the order they come in, which is pretty random.
Instead, anything with the same sortOrder should be ordered by name.
The following in LayerList.ts:127 should do the trick.
Layers are currently sorted by their
sortOrder
parameter. When layers all have the samesortOrder
(which is often the case when no particular order is required), they will then be ordered by the order they come in, which is pretty random.Instead, anything with the same
sortOrder
should be ordered by name.The following in
LayerList.ts:127
should do the trick.The text was updated successfully, but these errors were encountered: