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:
authorPhilipp Oeser <info@graphics-engineer.com>2020-10-13 14:11:24 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-10-13 14:17:01 +0300
commit79875e37fe281c1988a1160978ab904bd42a336a (patch)
treed18fff79dbfab4dddf67650faa54b8da8ad4a4e1 /source/blender
parentc11ae5cd21259a991b3cb1febdd4184fa62d789a (diff)
Cleanup: remove redundant assignment in SCULPT_brush_test_init
As discussed in D9120, this was an oversight in rBe0c792135adf, the same assignment already happens a couple of lines above.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 806a9e4b0fb..39b675de3c0 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -1608,8 +1608,6 @@ void SCULPT_brush_test_init(SculptSession *ss, SculptBrushTest *test)
zero_v4(test->plane_view);
zero_v4(test->plane_tool);
- test->mirror_symmetry_pass = ss->cache ? ss->cache->mirror_symmetry_pass : 0;
-
if (RV3D_CLIPPING_ENABLED(v3d, rv3d)) {
test->clip_rv3d = rv3d;
}