Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2019-05-24 16:20:19 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-05-24 16:21:33 +0300
commitbe03e678e3102072fb5f6c384f23cf83ca44fe37 (patch)
treeb237a697254ebd8c7034805da4763137af985af1 /source/blender/editors/space_outliner/outliner_tree.c
parent1b60b6edf176ae0dc6a0506d2edffdb1788585f3 (diff)
Fix T65060: Outliner - Sort Alphabetically checkbox is not working
Bug introduced on 78f8679cfc6d. Basically a copy/paste error in my original collection children implementation.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_tree.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_tree.c b/source/blender/editors/space_outliner/outliner_tree.c
index 80424f021e2..6da2e913003 100644
--- a/source/blender/editors/space_outliner/outliner_tree.c
+++ b/source/blender/editors/space_outliner/outliner_tree.c
@@ -1808,7 +1808,7 @@ static void outliner_collections_children_sort(ListBase *lb)
}
for (te = lb->first; te; te = te->next) {
- outliner_sort(&te->subtree);
+ outliner_collections_children_sort(&te->subtree);
}
}