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:
authorDaniel Dunbar <daniel@zuster.org>2005-08-14 16:17:34 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-08-14 16:17:34 +0400
commit6880801aadfec149cae9a3c3df05ad99d146f812 (patch)
tree3770da68b3ddd00ee4252a74ab4162a2b87d1d35 /source/blender/src/outliner.c
parent65576fe663cb3b99ac5cbb39eca130248852895d (diff)
- enable modifiers for curve/font/surf types... a little hacked in
but should work ok. Means new features! Wave effect for curve/font/surf and armature deform as well. - added undo_push calls for some modifier ops.
Diffstat (limited to 'source/blender/src/outliner.c')
-rw-r--r--source/blender/src/outliner.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/outliner.c b/source/blender/src/outliner.c
index 560f7f925a8..66f02ed442b 100644
--- a/source/blender/src/outliner.c
+++ b/source/blender/src/outliner.c
@@ -504,6 +504,7 @@ static TreeElement *outliner_add_element(SpaceOops *soops, ListBase *lb, void *i
TreeElement *temod = outliner_add_element(soops, &te->subtree, ob, te, TSE_MODIFIER_BASE, 0);
int index;
+ temod->name = "Modifiers";
for (index=0,md=ob->modifiers.first; md; index++,md=md->next) {
TreeElement *te = outliner_add_element(soops, &temod->subtree, ob, temod, TSE_MODIFIER, index);
if(te) te->name= md->name;