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:
authorCampbell Barton <ideasman42@gmail.com>2021-07-01 04:02:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-01 04:06:04 +0300
commit39188f3c9953c887f0d4bcf21387ec09c08ef4f3 (patch)
tree61db2e6a5e2ee045b126434d8bbc07e7cc94ff92 /source/blender/sequencer
parent930ecef9b583a7dca2d886ed893dcfc684772d9c (diff)
Cleanup: rename playhead to current-frame
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/intern/sequencer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/sequencer/intern/sequencer.c b/source/blender/sequencer/intern/sequencer.c
index f6b37bdb3ab..7907b11989c 100644
--- a/source/blender/sequencer/intern/sequencer.c
+++ b/source/blender/sequencer/intern/sequencer.c
@@ -311,7 +311,8 @@ SequencerToolSettings *SEQ_tool_settings_init(void)
SequencerToolSettings *tool_settings = MEM_callocN(sizeof(SequencerToolSettings),
"Sequencer tool settings");
tool_settings->fit_method = SEQ_SCALE_TO_FIT;
- tool_settings->snap_mode = SEQ_SNAP_TO_STRIPS | SEQ_SNAP_TO_PLAYHEAD | SEQ_SNAP_TO_STRIP_HOLD;
+ tool_settings->snap_mode = SEQ_SNAP_TO_STRIPS | SEQ_SNAP_TO_CURRENT_FRAME |
+ SEQ_SNAP_TO_STRIP_HOLD;
tool_settings->snap_distance = 15;
return tool_settings;
}