Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-08-06 20:44:28 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-08-06 20:52:30 +0300
commit3d35012a050e82c2c363a7c2054fdae75999297a (patch)
tree11f9ad4ac2423e0f8cabc2d24afec394f94a24ca
parent8123b1200674556f42e4c229de517d6ed85ea698 (diff)
GPencil: Fix unreported wrong Polyline bottom tooltip
It was mising the Wheelmouse option and the name of the tool was wrong.
-rw-r--r--source/blender/editors/gpencil/gpencil_primitive.c3
1 files changed, 2 insertions, 1 deletions
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) {