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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'power_sequencer/operators/mouse_trim_modal.py')
-rw-r--r--power_sequencer/operators/mouse_trim_modal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/power_sequencer/operators/mouse_trim_modal.py b/power_sequencer/operators/mouse_trim_modal.py
index b75985b7..4fbffd47 100644
--- a/power_sequencer/operators/mouse_trim_modal.py
+++ b/power_sequencer/operators/mouse_trim_modal.py
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2016-2019 by Nathan Lovato, Daniel Oakey, Razvan Radulescu, and contributors
+# Copyright (C) 2016-2020 by Nathan Lovato, Daniel Oakey, Razvan Radulescu, and contributors
#
# This file is part of Power Sequencer.
#
@@ -267,7 +267,7 @@ class POWER_SEQUENCER_OT_mouse_trim(bpy.types.Operator):
else:
frame_current = context.scene.frame_current
context.scene.frame_current = self.trim_start
- bpy.ops.sequencer.cut(frame=context.scene.frame_current, type="SOFT", side="BOTH")
+ bpy.ops.sequencer.split(frame=context.scene.frame_current, type="SOFT", side="BOTH")
context.scene.frame_current = frame_current
def find_strips_to_cut(self, context):