From 4e80573a7699f2e5c54a7dd186274ff6279dcad6 Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Wed, 7 Jul 2021 03:20:59 +0200 Subject: VSE: Use snapping settings for scrubbing Use "Snap Playhead to Strips" option to enable playhead snapping. Change behavior of CTRL key to invert snapping similar to transform operator. Currently this option is disabled by default. It makes editing quite unpleasant for me personally, but ideally I should gather feedback from more users. Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D11745 --- release/scripts/startup/bl_ui/space_sequencer.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'release/scripts/startup') diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py index 5e92e088b36..55714e0b0a5 100644 --- a/release/scripts/startup/bl_ui/space_sequencer.py +++ b/release/scripts/startup/bl_ui/space_sequencer.py @@ -2293,6 +2293,9 @@ class SEQUENCER_PT_snapping(Panel): col.prop(sequencer_tool_settings, "snap_ignore_muted", text="Muted Strips") col.prop(sequencer_tool_settings, "snap_ignore_sound", text="Sound Strips") + col = layout.column() + col.prop(sequencer_tool_settings, "use_snap_current_frame_to_strips") + classes = ( SEQUENCER_MT_change, -- cgit v1.2.3