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>2020-11-06 04:46:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-06 04:46:17 +0300
commitd89fedf2667298042ed12a899fb2afe538a69901 (patch)
treea6385647dcaac65d030d2b3d50bb3b819137bbb7 /source/blender/makesrna/intern/makesrna.c
parentaa3a4973a30ff668a62447e18ac41f6c916b4a8b (diff)
Cleanup: clang-format
Missed this last commit.
Diffstat (limited to 'source/blender/makesrna/intern/makesrna.c')
-rw-r--r--source/blender/makesrna/intern/makesrna.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 876dba432d2..a16dcbac049 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -577,8 +577,7 @@ static int rna_enum_bitmask(PropertyRNA *prop)
static int rna_color_quantize(PropertyRNA *prop, PropertyDefRNA *dp)
{
- return ((prop->type == PROP_FLOAT) &&
- (ELEM(prop->subtype, PROP_COLOR, PROP_COLOR_GAMMA)) &&
+ return ((prop->type == PROP_FLOAT) && (ELEM(prop->subtype, PROP_COLOR, PROP_COLOR_GAMMA)) &&
(IS_DNATYPE_FLOAT_COMPAT(dp->dnatype) == 0));
}