[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24944] trunk/blender: Durian Request:

Joshua Leung aligorith at gmail.com
Fri Nov 27 12:19:14 CET 2009


Revision: 24944
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24944
Author:   aligorith
Date:     2009-11-27 12:19:13 +0100 (Fri, 27 Nov 2009)

Log Message:
-----------
Durian Request:

Renaming "Sync Audio" to "Realtime Playback" to make it clearer about its purpose. Internally, it's still called "sync_audio" since that's strictly what it represents, but that could be changed later if there is a need.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_time.py
    trunk/blender/source/blender/makesrna/intern/rna_scene.c

Modified: trunk/blender/release/scripts/ui/space_time.py
===================================================================
--- trunk/blender/release/scripts/ui/space_time.py	2009-11-27 06:24:09 UTC (rev 24943)
+++ trunk/blender/release/scripts/ui/space_time.py	2009-11-27 11:19:13 UTC (rev 24944)
@@ -72,7 +72,7 @@
             subsub = row.row()
             subsub.prop(tools, "record_with_nla", toggle=True)
 
-        layout.prop(scene, "sync_audio", text="", toggle=True, icon='ICON_SPEAKER')
+        layout.prop(scene, "sync_audio", text="Realtime", toggle=True, icon='ICON_SPEAKER')
 
         layout.separator()
 
@@ -145,7 +145,7 @@
 
         layout.separator()
 
-        layout.prop(scene, "sync_audio", icon='ICON_SPEAKER')
+        layout.prop(scene, "sync_audio", text="Realtime Playback", icon='ICON_SPEAKER')
         layout.prop(scene, "mute_audio")
         layout.prop(scene, "scrub_audio")
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_scene.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_scene.c	2009-11-27 06:24:09 UTC (rev 24943)
+++ trunk/blender/source/blender/makesrna/intern/rna_scene.c	2009-11-27 11:19:13 UTC (rev 24944)
@@ -2525,7 +2525,7 @@
 
 	prop= RNA_def_property(srna, "sync_audio", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "audio.flag", AUDIO_SYNC);
-	RNA_def_property_ui_text(prop, "Audio Sync", "Play back and sync with audio from Sequence Editor.");
+	RNA_def_property_ui_text(prop, "Audio Sync", "Play back and sync with audio from Sequence Editor for realtime playback.");
 	RNA_def_property_update(prop, NC_SCENE, NULL);
 
 	prop= RNA_def_property(srna, "scrub_audio", PROP_BOOLEAN, PROP_NONE);





More information about the Bf-blender-cvs mailing list