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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-06-20 18:20:03 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-06-20 18:20:03 +0400
commitaa30e2027222c2fd0f3d616cf1689bb4f3d98495 (patch)
treeb4bd0f9cc11984ad6dae31f9e7ef7b79a4abdc3b /source/blender/editors/include/ED_sequencer.h
parent72f7ab441dafffb8b7033f1fe109af00e2d62eb5 (diff)
Fix #31852: Sequencer duplicate cant move strips on Y axis in a meta
Issue was caused by some stuff happenign in wm_operator_finish() which uses to somehow restore changes made by transformation invoke function. Solved by not calling translation operator directly from duplication operator (which is in fact really tricky) and use macros instead. This macros calls duplication operator which simply duplicates strip, and then calls translation operator.
Diffstat (limited to 'source/blender/editors/include/ED_sequencer.h')
-rw-r--r--source/blender/editors/include/ED_sequencer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_sequencer.h b/source/blender/editors/include/ED_sequencer.h
index cea567254de..7ba26f30c39 100644
--- a/source/blender/editors/include/ED_sequencer.h
+++ b/source/blender/editors/include/ED_sequencer.h
@@ -33,4 +33,6 @@ struct Sequence;
void ED_sequencer_select_sequence_single(struct Scene *scene, struct Sequence *seq, int deselect_all);
void ED_sequencer_deselect_all(struct Scene *scene);
+void ED_operatormacros_sequencer(void);
+
#endif /* __ED_SEQUENCER_H__ */