GPencil: Fix Chisel Brush pressure

In previous commit the pressure was disabled by error.
This commit is contained in:
Antonio Vazquez 2020-05-04 08:23:27 +02:00
parent 331bf04fad
commit 000fdd8a6e
1 changed files with 1 additions and 1 deletions

View File

@ -597,7 +597,7 @@ void BKE_gpencil_brush_preset_set(Main *bmain, Brush *brush, const short type)
}
case GP_BRUSH_PRESET_MARKER_CHISEL: {
brush->size = 150.0f;
brush->gpencil_settings->flag &= ~GP_BRUSH_USE_PRESSURE;
brush->gpencil_settings->flag |= GP_BRUSH_USE_PRESSURE;
brush->gpencil_settings->draw_strength = 1.0f;