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:
authorAndrea Beconcini <beco>2021-10-25 07:47:51 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-10-25 07:47:51 +0300
commit82ae7b990acfa2c522895322eb052b90f0c3b83a (patch)
tree46b16e80660984964791f2a4d389501b71f3c417 /source/blender/sequencer/SEQ_time.h
parent84f7bf56a8c3bc520583b6e49e954d84469659db (diff)
Fix T90633: Frame all doesn't use meta range
This commit fixes T90633, it changes the behavior of the `Frame All` operation when the user is tabbed into a metastrip: instead of using the scene timeline's range, `Frame All` uses the current metastrip's range. Reviewed By: ISS Differential Revision: https://developer.blender.org/D12974
Diffstat (limited to 'source/blender/sequencer/SEQ_time.h')
-rw-r--r--source/blender/sequencer/SEQ_time.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/sequencer/SEQ_time.h b/source/blender/sequencer/SEQ_time.h
index c9024614dfd..df3c9a40409 100644
--- a/source/blender/sequencer/SEQ_time.h
+++ b/source/blender/sequencer/SEQ_time.h
@@ -32,6 +32,8 @@ struct Scene;
struct Sequence;
struct rctf;
+void SEQ_timeline_init_boundbox(const struct Scene *scene, struct rctf *rect);
+void SEQ_timeline_expand_boundbox(const struct ListBase *seqbase, struct rctf *rect);
void SEQ_timeline_boundbox(const struct Scene *scene,
const struct ListBase *seqbase,
struct rctf *rect);