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>2008-05-23 12:58:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-05-23 12:58:44 +0400
commitf9e81a6f3a1b636ff03c47f4b0ce1a10e3d12bfa (patch)
treefa93cae52afbdd11c428d0b0fdafefdda111141b /source/blender/src/editseq.c
parent99f43e0b0731139cef7a1ac135df1d1988a40a46 (diff)
fix for [#12218] Impossible to exit meta strips with hotkey
Only enter mesta's that are active and selected, inconsistent with editmode in the 3D view, but editmode dosnt deal with nested data.
Diffstat (limited to 'source/blender/src/editseq.c')
-rw-r--r--source/blender/src/editseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editseq.c b/source/blender/src/editseq.c
index 50bd4d7c7f3..bb706f1aa3f 100644
--- a/source/blender/src/editseq.c
+++ b/source/blender/src/editseq.c
@@ -2890,7 +2890,7 @@ void enter_meta(void)
ed= G.scene->ed;
if(ed==0) return;
- if(last_seq==0 || last_seq->type!=SEQ_META || last_seq->flag==0) {
+ if(last_seq==0 || last_seq->type!=SEQ_META || (last_seq->flag & SELECT)==0) {
exit_meta();
return;
}