[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39048] trunk/blender/source/blender/ editors/space_sequencer/sequencer_edit.c: fix [#28160] Pressing Y on an image sequence to seperate the images takes them out of their meta strips

Campbell Barton ideasman42 at gmail.com
Fri Aug 5 08:26:54 CEST 2011


Revision: 39048
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39048
Author:   campbellbarton
Date:     2011-08-05 06:26:54 +0000 (Fri, 05 Aug 2011)
Log Message:
-----------
fix [#28160] Pressing Y on an image sequence to seperate the images takes them out of their meta strips

dont show a popup anymore, was silly because you had to change the value for before anything was done, can use f6 redo popup instead, sequencer should eventually have a view3d operator redo panel.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c

Modified: trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2011-08-05 06:09:30 UTC (rev 39047)
+++ trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2011-08-05 06:26:54 UTC (rev 39048)
@@ -1785,7 +1785,7 @@
 				se = give_stripelem(seq, cfra);
 
 				seq_new= seq_dupli_recursive(scene, scene, seq, SEQ_DUPE_UNIQUE_NAME);
-				BLI_addtail(&ed->seqbase, seq_new);
+				BLI_addtail(ed->seqbasep, seq_new);
 
 				seq_new->start= start_ofs;
 				seq_new->type= SEQ_IMAGE;
@@ -1839,7 +1839,6 @@
 	ot->description="On image sequences strips, it return a strip for each image";
 	
 	/* api callbacks */
-	ot->invoke= WM_operator_props_popup;
 	ot->exec= sequencer_separate_images_exec;
 	ot->poll= sequencer_edit_poll;
 	




More information about the Bf-blender-cvs mailing list