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-28 15:15:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-28 15:15:26 +0400
commit6864f2c2857e37e7a1c4f2d8a471c17e8e63e4db (patch)
tree7fc76e6017c4a74fe7170e424cd448b6ad48b452 /source/blender/makesrna/intern/rna_color.c
parent4982f200fadd15bb733128ae03ed737549e2657c (diff)
move suspicious break statement in drawDispListsolid() to prevent falling through.
Diffstat (limited to 'source/blender/makesrna/intern/rna_color.c')
-rw-r--r--source/blender/makesrna/intern/rna_color.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_color.c b/source/blender/makesrna/intern/rna_color.c
index ec61c543a9f..ebd06475c79 100644
--- a/source/blender/makesrna/intern/rna_color.c
+++ b/source/blender/makesrna/intern/rna_color.c
@@ -288,6 +288,7 @@ static char *rna_ColorRampElement_path(PointerRNA *ptr)
if (RNA_path_resolve(&ramp_ptr, "color_ramp", &ramp_ptr, &prop)) {
COLRAMP_GETPATH;
}
+ break;
}
}
}