Fix issue reported by copias on irc, shift duplicate and snap crashes in

sequencer.

Missing snap callback case. Quick patch is to use the sequencer specific
operator instead of generic translate. We really need to support proper
snap/snap options at some point though.
This commit is contained in:
Antonis Ryakiotakis 2015-04-02 13:47:39 +02:00
parent ff45930cc5
commit 77ff544d93
Notes: blender-bot 2023-02-14 09:09:37 +01:00
Referenced by issue #44681, VSE duplicate image strip and press ctrl causes crash
Referenced by issue #44656, Blender crashes when duplicating strips in the VSE
1 changed files with 1 additions and 1 deletions

View File

@ -365,5 +365,5 @@ void ED_operatormacros_sequencer(void)
"Duplicate selected strips and move them", OPTYPE_UNDO | OPTYPE_REGISTER);
WM_operatortype_macro_define(ot, "SEQUENCER_OT_duplicate");
WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate");
WM_operatortype_macro_define(ot, "TRANSFORM_OT_seq_slide");
}