GPencil: Fix unreported wrong Polyline bottom tooltip

It was mising the Wheelmouse option and the name of the tool was wrong.
This commit is contained in:
Antonio Vazquez 2020-08-06 19:44:28 +02:00
parent 8123b12006
commit 3d35012a05
1 changed files with 2 additions and 1 deletions

View File

@ -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) {