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>2003-10-07 22:24:02 +0400
committerTon Roosendaal <ton@blender.org>2003-10-07 22:24:02 +0400
commitf234b44d474ad45e07e4a9b2416a19a37c2e35ee (patch)
tree90482479c494adf505234952a13e09893fffa78e /source/blender/src/editgroup.c
parent39b1ceb66915b851b06bd544aa7b476a6a1010a2 (diff)
- another huge commit! read this!
- removed src/buttons.c and include/BIF_buttons.h - added src/buttons.txt, which is the old buttons.c for review and adding code to new panels structure - changed internal events to match new buttonspace structure - added tabs for new shading group of buttons - removed loads of little warnings, -Wall now compiles src/ almost without error (hint: setenv NAN_QUIET to see it all better) Now I'm ready to do actual buttons -> panels conversion. I will do the raw versions first, others then can cleanup
Diffstat (limited to 'source/blender/src/editgroup.c')
-rw-r--r--source/blender/src/editgroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editgroup.c b/source/blender/src/editgroup.c
index 2a43f6e6f47..194e9671088 100644
--- a/source/blender/src/editgroup.c
+++ b/source/blender/src/editgroup.c
@@ -118,7 +118,7 @@ void add_selected_to_group(void)
}
allqueue(REDRAWVIEW3D, 0);
- allqueue(REDRAWBUTSANIM, 0);
+ allqueue(REDRAWBUTSOBJECT, 0);
}
void rem_selected_from_group(void)
@@ -143,7 +143,7 @@ void rem_selected_from_group(void)
}
allqueue(REDRAWVIEW3D, 0);
- allqueue(REDRAWBUTSANIM, 0);
+ allqueue(REDRAWBUTSOBJECT, 0);
}
void prev_group_key(Group *group)