[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 11:28:16 CEST 2008


Correction to the commit message, only entering selected meta's was
already working in many cases, but checking the flag was zero is
incorrect since the flag is used for MUTE, FilterY, Premul etc. not
just selection anymore.
Double checked and this assumption isn't made anywhere else.

On Fri, May 23, 2008 at 10:58 AM, Campbell Barton <ideasman42 at gmail.com> wrote:
> 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;
>        }
>
>
> _______________________________________________
> Bf-blender-cvs mailing list
> Bf-blender-cvs at blender.org
> http://lists.blender.org/mailman/listinfo/bf-blender-cvs
>



More information about the Bf-blender-cvs mailing list