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:
authorJoshua Leung <aligorith@gmail.com>2007-07-03 05:23:30 +0400
committerJoshua Leung <aligorith@gmail.com>2007-07-03 05:23:30 +0400
commitb6ccafc5010f645112d5c642023bcb17c3b791ac (patch)
treefd52a3fc12b440991e3d0eb0a8142d0c920bf6fa /source/blender/src/drawaction.c
parent2929e8f65abb7c2779df37d49a87e217d698144b (diff)
== Action/IPO Mute Icons ==
Added new defines for the icons used to show this, on the request of Matt Ebb. For now, the eye icons have simply been duplicated to the new spaces, but 'more descriptive' icons should be made.
Diffstat (limited to 'source/blender/src/drawaction.c')
-rw-r--r--source/blender/src/drawaction.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/src/drawaction.c b/source/blender/src/drawaction.c
index 83394585fa0..4a85f062f11 100644
--- a/source/blender/src/drawaction.c
+++ b/source/blender/src/drawaction.c
@@ -446,9 +446,9 @@ static void draw_channel_names(void)
if (achan->ipo) {
if (achan->ipo->muteipo)
- mute = ICON_RESTRICT_VIEW_ON;
+ mute = ICON_MUTE_IPO_ON;
else
- mute = ICON_RESTRICT_VIEW_OFF;
+ mute = ICON_MUTE_IPO_OFF;
}
sel = SEL_ACHAN(achan);
@@ -468,9 +468,9 @@ static void draw_channel_names(void)
if (conchan->ipo) {
if (conchan->ipo->muteipo)
- mute = ICON_RESTRICT_VIEW_ON;
+ mute = ICON_MUTE_IPO_ON;
else
- mute = ICON_RESTRICT_VIEW_OFF;
+ mute = ICON_MUTE_IPO_OFF;
}
sel = SEL_CONCHAN(conchan);
@@ -485,9 +485,9 @@ static void draw_channel_names(void)
protect = -1; // for now, until this can be supported by others
if (icu->flag & IPO_MUTE)
- mute = ICON_RESTRICT_VIEW_ON;
+ mute = ICON_MUTE_IPO_ON;
else
- mute = ICON_RESTRICT_VIEW_OFF;
+ mute = ICON_MUTE_IPO_OFF;
sel = SEL_ICU(icu);
sprintf(name, getname_ipocurve(icu));