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/drawnla.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/drawnla.c')
-rw-r--r--source/blender/src/drawnla.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/drawnla.c b/source/blender/src/drawnla.c
index a7f81b758a3..c48cca702c2 100644
--- a/source/blender/src/drawnla.c
+++ b/source/blender/src/drawnla.c
@@ -152,9 +152,9 @@ static void draw_nla_channels(void)
/* icon to indicate if ipo-channel muted */
if (ob->ipo) {
if (ob->ipo->muteipo)
- BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_RESTRICT_VIEW_ON);
+ BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_MUTE_IPO_ON);
else
- BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_RESTRICT_VIEW_OFF);
+ BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_MUTE_IPO_OFF);
}
glDisable(GL_BLEND);
@@ -210,9 +210,9 @@ static void draw_nla_channels(void)
BIF_icon_draw(x+34, y-8, ICON_MODIFIER);
if(strip->flag & ACTSTRIP_MUTE)
- BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_RESTRICT_VIEW_ON);
+ BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_MUTE_IPO_ON);
else
- BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_RESTRICT_VIEW_OFF);
+ BIF_icon_draw(NLAWIDTH-16, y-NLACHANNELHEIGHT/2, ICON_MUTE_IPO_OFF);
glDisable(GL_BLEND);
}