[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14937] trunk/blender/source/blender/src/ editseq.c: fix for [#12218] Impossible to exit meta strips with hotkey

Campbell Barton ideasman42 at gmail.com
Fri May 23 10:58:44 CEST 2008


Revision: 14937
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14937
Author:   campbellbarton
Date:     2008-05-23 10:58:44 +0200 (Fri, 23 May 2008)

Log Message:
-----------
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.

Modified Paths:
--------------
    trunk/blender/source/blender/src/editseq.c

Modified: trunk/blender/source/blender/src/editseq.c
===================================================================
--- trunk/blender/source/blender/src/editseq.c	2008-05-23 08:39:59 UTC (rev 14936)
+++ trunk/blender/source/blender/src/editseq.c	2008-05-23 08:58:44 UTC (rev 14937)
@@ -2890,7 +2890,7 @@
 	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;
 	}





More information about the Bf-blender-cvs mailing list