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:
authorAntonio Vazquez <blendergit@gmail.com>2020-05-01 20:17:29 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-05-01 20:17:29 +0300
commiteddddceb8e100d7d47a125d4c0dbc8de60c117b3 (patch)
tree452ce5af994758da1e9adb4282f2c2b2c14a4981
parent57d1db27c74d9cca09cb9c2290726a268346cd94 (diff)
parent716638458d1517342da807aca3b382944b1fd7ba (diff)
Merge branch 'blender-v2.83-release'
-rw-r--r--source/blender/editors/gpencil/gpencil_paint.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index bd7dfecf692..0f7091b8b46 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -3250,11 +3250,6 @@ static void gpencil_add_arc_points(tGPsdata *p, float mval[2], int segments)
pt->pressure = pt_prev->pressure;
pt->strength = pt_prev->strength;
- /* Apply angle of stroke to brush size. */
- if (brush_settings->draw_angle_factor != 0.0f) {
- gp_brush_angle_segment(p, pt_prev, pt);
- }
-
/* Apply randomness to pressure. */
if (brush_settings->draw_random_press > 0.0f) {
float rand = BLI_rng_get_float(p->rng) * 2.0f - 1.0f;