[Bf-blender-cvs] [d1da89f73ec] greasepencil-object: GP: Replace A keymap by E keymap to be consistent.

Antonioya noreply at git.blender.org
Sat Dec 15 16:38:16 CET 2018


Commit: d1da89f73ec0844150cc1467c8ff134c8f14212b
Author: Antonioya
Date:   Sat Dec 15 16:22:59 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rBd1da89f73ec0844150cc1467c8ff134c8f14212b

GP: Replace A keymap by E keymap to be consistent.

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

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

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

diff --git a/source/blender/editors/gpencil/gpencil_primitive.c b/source/blender/editors/gpencil/gpencil_primitive.c
index 72b4136f26c..830ef04b0a6 100644
--- a/source/blender/editors/gpencil/gpencil_primitive.c
+++ b/source/blender/editors/gpencil/gpencil_primitive.c
@@ -402,7 +402,7 @@ static void gpencil_primitive_status_indicators(bContext *C, tGPDprimitive *tgpi
 		BLI_strncpy(msg_str, IFACE_("Arc: ESC to cancel, Enter/RMB to confirm, WHEEL/+- to adjust edge number, Shift to square, Alt to center"), UI_MAX_DRAW_STR);
 	}
 	else if (tgpi->type == GP_STROKE_CURVE) {
-		BLI_strncpy(msg_str, IFACE_("Curve: ESC to cancel, Enter/RMB to confirm, WHEEL/+- to adjust edge number, Shift to square, Alt to center"), UI_MAX_DRAW_STR);
+		BLI_strncpy(msg_str, IFACE_("Curve: ESC to cancel, Enter/RMB to confirm, WHEEL/+- to adjust edge number, Shift to square, Alt to center, E: extrude"), UI_MAX_DRAW_STR);
 	}
 
 	if (ELEM(tgpi->type, GP_STROKE_CIRCLE, GP_STROKE_ARC, GP_STROKE_LINE, GP_STROKE_BOX)) {
@@ -1247,7 +1247,7 @@ static void gpencil_primitive_edit_event_handling(bContext *C, wmOperator *op, w
 			}
 			break;
 		}
-		case AKEY:
+		case EKEY:
 		{
 			if (tgpi->flag == IN_CURVE_EDIT && !ELEM(tgpi->type, GP_STROKE_BOX, GP_STROKE_CIRCLE)) {
 				tgpi->flag = IN_PROGRESS;



More information about the Bf-blender-cvs mailing list