Revision: 22072
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=22072
Author:   campbellbarton
Date:     2009-07-30 22:22:55 +0200 (Thu, 30 Jul 2009)

Log Message:
-----------
changes to defaults for sequencer strip adding

Modified Paths:
--------------
    branches/blender2.5/blender/release/ui/space_sequencer.py
    
branches/blender2.5/blender/source/blender/editors/space_sequencer/sequencer_add.c

Modified: branches/blender2.5/blender/release/ui/space_sequencer.py
===================================================================
--- branches/blender2.5/blender/release/ui/space_sequencer.py   2009-07-30 
20:18:28 UTC (rev 22071)
+++ branches/blender2.5/blender/release/ui/space_sequencer.py   2009-07-30 
20:22:55 UTC (rev 22072)
@@ -149,10 +149,8 @@
                layout.column()
                layout.itemO("sequencer.scene_strip_add", text="Scene")
                layout.itemO("sequencer.movie_strip_add", text="Movie")
-               layout.item_booleanO("sequencer.movie_strip_add", "sound", 
True, text="Movie & Sound") # FFMPEG ONLY
                layout.itemO("sequencer.image_strip_add", text="Image")
-               layout.itemO("sequencer.sound_strip_add", text="Sound (Ram)")
-               layout.item_booleanO("sequencer.sound_strip_add", "hd", True, 
text="Sound (Streaming)") # FFMPEG ONLY
+               layout.itemO("sequencer.sound_strip_add", text="Sound")
                
                layout.itemM("SEQUENCER_MT_add_effect")
 

Modified: 
branches/blender2.5/blender/source/blender/editors/space_sequencer/sequencer_add.c
===================================================================
--- 
branches/blender2.5/blender/source/blender/editors/space_sequencer/sequencer_add.c
  2009-07-30 20:18:28 UTC (rev 22071)
+++ 
branches/blender2.5/blender/source/blender/editors/space_sequencer/sequencer_add.c
  2009-07-30 20:22:55 UTC (rev 22072)
@@ -310,7 +310,7 @@
        
        WM_operator_properties_filesel(ot, FOLDERFILE|MOVIEFILE);
        sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME);
-       RNA_def_boolean(ot->srna, "sound", FALSE, "Sound", "Load hd sound with 
the movie"); // XXX need to impliment this
+       RNA_def_boolean(ot->srna, "sound", TRUE, "Sound", "Load hd sound with 
the movie"); // XXX need to impliment this
 }
 
 
@@ -416,7 +416,7 @@
        
        WM_operator_properties_filesel(ot, FOLDERFILE|SOUNDFILE);
        sequencer_generic_props__internal(ot, SEQPROP_STARTFRAME);
-       RNA_def_boolean(ot->srna, "hd", FALSE, "HD Sound", "Load the sound as 
streaming audio"); // XXX need to impliment this
+       RNA_def_boolean(ot->srna, "cache", FALSE, "Cache", "Load the sound as 
streaming audio"); // XXX need to impliment this
 }
 
 /* add image operator */


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to