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:
authorNathan Craddock <nzcraddock@gmail.com>2020-06-19 06:53:54 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-06-19 06:53:54 +0300
commit41f0697501f9c5ea16415d2db230fda6c6cb76e4 (patch)
tree350daa867c69fc233bacc3f0822f37ac5e8695c6
parent1ee32ea228f209673c51cc61fdf6387781239aff (diff)
Outliner: Show pose group icons
Pose groups previously showed a dot icon. Now it draws the correct icon.
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 7d3b95721c6..dd16e21c747 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -2288,6 +2288,7 @@ TreeElementIcon tree_element_get_icon(TreeStoreElem *tselem, TreeElement *te)
data.icon = ICON_MATERIAL_DATA;
break;
case TSE_POSEGRP_BASE:
+ case TSE_POSEGRP:
data.icon = ICON_GROUP_BONE;
break;
case TSE_SEQUENCE: