Fix T65060: Outliner - Sort Alphabetically checkbox is not working

Bug introduced on 78f8679cfc. Basically a copy/paste error in my
original collection children implementation.
This commit is contained in:
Dalai Felinto
2019-05-24 10:20:19 -03:00
parent 1b60b6edf1
commit be03e678e3

View File

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