[Bf-blender-cvs] [3d35012a050] blender-v2.90-release: GPencil: Fix unreported wrong Polyline bottom tooltip

Antonio Vazquez noreply at git.blender.org
Thu Aug 6 19:52:37 CEST 2020


Commit: 3d35012a050e82c2c363a7c2054fdae75999297a
Author: Antonio Vazquez
Date:   Thu Aug 6 19:44:28 2020 +0200
Branches: blender-v2.90-release
https://developer.blender.org/rB3d35012a050e82c2c363a7c2054fdae75999297a

GPencil: Fix unreported wrong Polyline bottom tooltip

It was mising the Wheelmouse option and the name of the tool was wrong.

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

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 30be9bde7ae..20f959e2e2c 100644
--- a/source/blender/editors/gpencil/gpencil_primitive.c
+++ b/source/blender/editors/gpencil/gpencil_primitive.c
@@ -412,7 +412,8 @@ static void gpencil_primitive_status_indicators(bContext *C, tGPDprimitive *tgpi
   }
   else if (tgpi->type == GP_STROKE_POLYLINE) {
     BLI_strncpy(msg_str,
-                TIP_("Line: ESC to cancel, LMB to set, Enter/MMB to confirm, Shift to align"),
+                TIP_("Polyline: ESC to cancel, LMB to set, Enter/MMB to confirm, WHEEL/+- to "
+                     "adjust subdivision number, Shift to align"),
                 UI_MAX_DRAW_STR);
   }
   else if (tgpi->type == GP_STROKE_BOX) {



More information about the Bf-blender-cvs mailing list