From b6ccafc5010f645112d5c642023bcb17c3b791ac Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 3 Jul 2007 01:23:30 +0000 Subject: == 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. --- source/blender/src/drawnla.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/src/drawnla.c') 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); } -- cgit v1.2.3