[Bf-blender-cvs] [be03e678e31] master: Fix T65060: Outliner - Sort Alphabetically checkbox is not working

Dalai Felinto noreply at git.blender.org
Fri May 24 15:21:42 CEST 2019


Commit: be03e678e3102072fb5f6c384f23cf83ca44fe37
Author: Dalai Felinto
Date:   Fri May 24 10:20:19 2019 -0300
Branches: master
https://developer.blender.org/rBbe03e678e3102072fb5f6c384f23cf83ca44fe37

Fix T65060: Outliner - Sort Alphabetically checkbox is not working

Bug introduced on 78f8679cfc6d. Basically a copy/paste error in my
original collection children implementation.

===================================================================

M	source/blender/editors/space_outliner/outliner_tree.c

===================================================================

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);
   }
 }



More information about the Bf-blender-cvs mailing list