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:
authorMatt Ebb <matt@mke3.net>2009-02-18 08:54:37 +0300
committerMatt Ebb <matt@mke3.net>2009-02-18 08:54:37 +0300
commitf5de61816bb7a790b8f60f82ddd0a777b23f1413 (patch)
tree21a8662bb4a5e18ea9e07a18d7b636ad3ee8113d /source/blender/editors/space_action/action_draw.c
parentba59754a1d76da576dd43a347fc4e6c2e6598a60 (diff)
* Cleaned up naming of icon ID constants. This helps fix bad icons in the graph editor among others.
Diffstat (limited to 'source/blender/editors/space_action/action_draw.c')
-rw-r--r--source/blender/editors/space_action/action_draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_action/action_draw.c b/source/blender/editors/space_action/action_draw.c
index 94a83197f36..16b264154ce 100644
--- a/source/blender/editors/space_action/action_draw.c
+++ b/source/blender/editors/space_action/action_draw.c
@@ -473,9 +473,9 @@ void draw_channel_names(bAnimContext *ac, SpaceAction *saction, ARegion *ar)
/* icon depends on object-type */
if (ob->type == OB_ARMATURE)
- special= ICON_ARMATURE;
+ special= ICON_ARMATURE_DATA;
else
- special= ICON_OBJECT;
+ special= ICON_OBJECT_DATA;
/* only show expand if there are any channels */
if (EXPANDED_OBJC(ob))
@@ -577,7 +577,7 @@ void draw_channel_names(bAnimContext *ac, SpaceAction *saction, ARegion *ar)
group = 4;
indent = 1;
- special = ICON_CURVE;
+ special = ICON_CURVE_DATA;
if (FILTER_CUR_OBJD(cu))
expand = ICON_TRIA_DOWN;