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>2005-09-24 19:36:25 +0400
committerTon Roosendaal <ton@blender.org>2005-09-24 19:36:25 +0400
commite5b9f62c6e82d4b7ab0d205cf0a8bb4ef8b90c52 (patch)
tree1d0db00ba2312d99fb3642fd6f8b10db62ec353b /source/blender/src/butspace.c
parent94aa84362604cbf421fa12bafa3472cc46aff049 (diff)
bugfix #3100
Hrms... previous commit here to make sure faces are not added 'double', caused a part in removedoubles not to work well, removing too many faces. Solved it more proper now.
Diffstat (limited to 'source/blender/src/butspace.c')
-rw-r--r--source/blender/src/butspace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/butspace.c b/source/blender/src/butspace.c
index ca62281c4e5..5e32a41acbf 100644
--- a/source/blender/src/butspace.c
+++ b/source/blender/src/butspace.c
@@ -425,9 +425,9 @@ void drawbutspace(ScrArea *sa, void *spacedata)
case CONTEXT_OBJECT:
tab= sbuts->tab[CONTEXT_OBJECT];
- if(tab==sbuts->tab[TAB_OBJECT_OBJECT])
+ if(tab==TAB_OBJECT_OBJECT)
object_panels();
- else if(tab==sbuts->tab[TAB_OBJECT_PHYSICS])
+ else if(tab==TAB_OBJECT_PHYSICS)
physics_panels();
break;