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:
authorCampbell Barton <ideasman42@gmail.com>2013-07-13 18:44:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-13 18:44:04 +0400
commit4a39a4a92afe6d516e6e94ca4f81349aefbb1cc7 (patch)
treef99ecd77a8e398493baef20d638f2cc47c0b992c /source/blender/editors/space_buttons
parent8ffa38b402457451f1aeb88644cbe55797a30aed (diff)
fix for more errors with switch missing break
- boids random option was falling through to average. - (NC_OBJECT | ND_DRAW) notifier was falling through to ND_SHADING button preview updates.
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index b01f653837c..72d7bcd43ce 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -292,6 +292,7 @@ static void buttons_area_listener(bScreen *UNUSED(sc), ScrArea *sa, wmNotifier *
buttons_area_redraw(sa, BCONTEXT_OBJECT);
buttons_area_redraw(sa, BCONTEXT_DATA);
buttons_area_redraw(sa, BCONTEXT_PHYSICS);
+ break;
case ND_SHADING:
case ND_SHADING_DRAW:
case ND_SHADING_LINKS: