[Bf-blender-cvs] [ef0ff4aaf25] master: GPencil: Fix unreported error in Dots Strokes material initialization

Antonio Vazquez noreply at git.blender.org
Wed Jun 3 18:01:37 CEST 2020


Commit: ef0ff4aaf2515a34fd850d576f883a6b16515345
Author: Antonio Vazquez
Date:   Wed Jun 3 18:01:23 2020 +0200
Branches: master
https://developer.blender.org/rBef0ff4aaf2515a34fd850d576f883a6b16515345

GPencil: Fix unreported error in Dots Strokes material initialization

The materials was not initializated in the right mode.

===================================================================

M	source/blender/blenkernel/intern/brush.c

===================================================================

diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c
index 133917e441c..3241518cae5 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -520,6 +520,7 @@ void BKE_gpencil_brush_preset_set(Main *bmain, Brush *brush, const short type)
       Material *ma = BLI_findstring(&bmain->materials, "Dots Stroke", offsetof(ID, name) + 2);
       if (ma == NULL) {
         ma = BKE_gpencil_material_add(bmain, "Dots Stroke");
+        ma->gp_style->mode = GP_MATERIAL_MODE_DOT;
       }
       brush->gpencil_settings->material = ma;
       /* Pin the matterial to the brush. */
@@ -744,6 +745,7 @@ void BKE_gpencil_brush_preset_set(Main *bmain, Brush *brush, const short type)
       Material *ma = BLI_findstring(&bmain->materials, "Dots Stroke", offsetof(ID, name) + 2);
       if (ma == NULL) {
         ma = BKE_gpencil_material_add(bmain, "Dots Stroke");
+        ma->gp_style->mode = GP_MATERIAL_MODE_DOT;
       }
       brush->gpencil_settings->material = ma;
       /* Pin the matterial to the brush. */



More information about the Bf-blender-cvs mailing list