[Bf-blender-cvs] [4213ace] GPencil_Editing_Stage3: Fix: Header help text was not defined for Grease Pencil "Poly" drawmode

Joshua Leung noreply at git.blender.org
Sun Dec 13 01:08:07 CET 2015


Commit: 4213acedca74c764f2eb6b6955883755dbc0575c
Author: Joshua Leung
Date:   Sun Dec 13 12:25:51 2015 +1300
Branches: GPencil_Editing_Stage3
https://developer.blender.org/rB4213acedca74c764f2eb6b6955883755dbc0575c

Fix: Header help text was not defined for Grease Pencil "Poly" drawmode

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

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 16b6352..c5a92c4 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -1582,6 +1582,10 @@ static void gpencil_draw_status_indicators(tGPsdata *p)
 					ED_area_headerprint(p->sa, IFACE_("Grease Pencil Freehand Session: Hold and drag LMB to draw | "
 					                                  "ESC/Enter to end"));
 					break;
+				case GP_PAINTMODE_DRAW_POLY:
+					ED_area_headerprint(p->sa, IFACE_("Grease Pencil Poly Session: LMB click to place next stroke vertex | "
+					                                  "ESC/Enter to end"));
+					break;
 				
 				default: /* unhandled future cases */
 					ED_area_headerprint(p->sa, IFACE_("Grease Pencil Session: ESC/Enter to end"));




More information about the Bf-blender-cvs mailing list