Fix T91285: Bad tooltip for VSE Slip operator

This patch is created to change the tooltip for Slip Strip Contents
As per the present info, only active strip will be affected.
But in reality selected strips can be trimmed with this operator.

Word Trim changed to Slip in tooltip

Reviewed By: campbellbarton

Differential Revision: https://developer.blender.org/D12450
This commit is contained in:
Pratik Borhade 2021-09-30 21:11:09 +02:00 committed by Richard Antalik
parent 213554f24a
commit 33dc584b37
Notes: blender-bot 2023-02-14 03:13:26 +01:00
Referenced by issue #91285, VSE: Erroneous tooltip for "Slip Strip Contents" menu operator
1 changed files with 2 additions and 2 deletions

View File

@ -870,9 +870,9 @@ static int sequencer_slip_modal(bContext *C, wmOperator *op, const wmEvent *even
void SEQUENCER_OT_slip(struct wmOperatorType *ot)
{
/* Identifiers. */
ot->name = "Trim Strips";
ot->name = "Slip Strips";
ot->idname = "SEQUENCER_OT_slip";
ot->description = "Trim the contents of the active strip";
ot->description = "Slip the contents of selected strips";
/* Api callbacks. */
ot->invoke = sequencer_slip_invoke;