[Bf-blender-cvs] [33dc584b371] master: Fix T91285: Bad tooltip for VSE Slip operator

Pratik Borhade noreply at git.blender.org
Thu Sep 30 21:19:29 CEST 2021


Commit: 33dc584b371211428130596d99559a271c25bc66
Author: Pratik Borhade
Date:   Thu Sep 30 21:11:09 2021 +0200
Branches: master
https://developer.blender.org/rB33dc584b371211428130596d99559a271c25bc66

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

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

M	source/blender/editors/space_sequencer/sequencer_edit.c

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

diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 6daa8d690e5..9be947b9112 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -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;



More information about the Bf-blender-cvs mailing list