[Bf-blender-cvs] [9a0a556d3b5] master: Fix T70202: Typo error in message

Antonio Vazquez noreply at git.blender.org
Tue Sep 24 16:16:36 CEST 2019


Commit: 9a0a556d3b58b487b3609dd01c56b2939841ad3a
Author: Antonio Vazquez
Date:   Tue Sep 24 16:16:18 2019 +0200
Branches: master
https://developer.blender.org/rB9a0a556d3b58b487b3609dd01c56b2939841ad3a

Fix T70202: Typo error in message

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

M	source/blender/editors/gpencil/gpencil_paint.c

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

diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index 0a4b068a926..cf20fb9043f 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -3211,7 +3211,7 @@ static int gpencil_draw_invoke(bContext *C, wmOperator *op, const wmEvent *event
   if (paintmode != GP_PAINTMODE_ERASER) {
     bGPDlayer *gpl = CTX_data_active_gpencil_layer(C);
     if ((gpl) && ((gpl->flag & GP_LAYER_LOCKED) || (gpl->flag & GP_LAYER_HIDE))) {
-      BKE_report(op->reports, RPT_ERROR, "Active layer is locked or hide");
+      BKE_report(op->reports, RPT_ERROR, "Active layer is locked or hidden");
       return OPERATOR_CANCELLED;
     }
   }



More information about the Bf-blender-cvs mailing list