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:
authorTon Roosendaal <ton@blender.org>2006-06-25 16:30:33 +0400
committerTon Roosendaal <ton@blender.org>2006-06-25 16:30:33 +0400
commit72b501beb6147df1273612e452b761cd26daa256 (patch)
treee2a9b3e3a134120f015ba1d62b912ca3bef03dc7 /source/blender/src/drawipo.c
parent713711b8be9bf7ab050177630ef431ccfc78fe6f (diff)
Bugfix #4466 (half)
Object 'active shape' was only 1 byte in object. OK. Let's sacrifice another byte for that then!
Diffstat (limited to 'source/blender/src/drawipo.c')
-rw-r--r--source/blender/src/drawipo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawipo.c b/source/blender/src/drawipo.c
index ead44dcf8ba..2689bb9ae66 100644
--- a/source/blender/src/drawipo.c
+++ b/source/blender/src/drawipo.c
@@ -1049,7 +1049,7 @@ static void draw_ipobuts(SpaceIpo *sipo)
if(ob && sipo->blocktype==ID_KE) {
int icon;
if(ob->shapeflag & OB_SHAPE_LOCK) icon= ICON_PIN_HLT; else icon= ICON_PIN_DEHLT;
- uiDefIconButBitC(block, TOG, OB_SHAPE_LOCK, B_SETKEY, icon,
+ uiDefIconButBitS(block, TOG, OB_SHAPE_LOCK, B_SETKEY, icon,
v2d->mask.xmax+18,y,25,20, &ob->shapeflag, 0, 0, 0, 0, "Always show the current Shape for this Object");
y-= IPOBUTY;
}