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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-02-10 17:23:32 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-02-10 17:23:32 +0300
commitf26e67e9d62ce8392cb3ff76d1a0e4e5800e6b1d (patch)
tree8cfd9ce6228836c995a8e094595ef187172647dc
parent298ee9d3dc18fbedaaaf9cb0c033c821730b35fa (diff)
Fix for bug #5976:
Object separated from mesh in edit mode did not draw in the correct green wire color when part of a group.
-rw-r--r--source/blender/src/editobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index f1eeeb3a661..3b4fe480a82 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -4706,7 +4706,7 @@ void adduplicate(int mode, int dupflag)
if(object_in_group(ob, group))
add_to_group(group, obn);
}
- obn->flag &= OB_FROMGROUP; /* this flag is unset with copy_object() */
+ obn->flag |= OB_FROMGROUP; /* this flag is unset with copy_object() */
}
if(BASACT==base) BASACT= basen;