Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2010-02-18 17:37:17 +0300
committerJoerg Mueller <nexyon@gmail.com>2010-02-18 17:37:17 +0300
commit007374170b46c3f677b3c39d1af9736f497d5811 (patch)
tree63ac19479fc6e7f30b4a9646eeb96b9a782e9638
parent37d781b8687ea242c6d185f4c9e58518a62eec32 (diff)
Calling AV-sync in UI to what it really is!
-rw-r--r--release/scripts/ui/space_time.py4
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py
index 552bf05181d..4ef2c3797ad 100644
--- a/release/scripts/ui/space_time.py
+++ b/release/scripts/ui/space_time.py
@@ -72,7 +72,7 @@ class TIME_HT_header(bpy.types.Header):
subsub = row.row()
subsub.prop(tools, "record_with_nla", toggle=True)
- layout.prop(scene, "sync_audio", text="Realtime", toggle=True, icon='SPEAKER')
+ layout.prop(scene, "sync_audio", text="AV-sync", toggle=True, icon='SPEAKER')
layout.separator()
@@ -152,7 +152,7 @@ class TIME_MT_playback(bpy.types.Menu):
layout.separator()
- layout.prop(scene, "sync_audio", text="Realtime Playback", icon='SPEAKER')
+ layout.prop(scene, "sync_audio", text="AV-sync", icon='SPEAKER')
layout.prop(scene, "mute_audio")
layout.prop(scene, "scrub_audio")
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index a76df31d31f..2d5310971db 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2811,7 +2811,7 @@ void RNA_def_scene(BlenderRNA *brna)
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 for realtime playback");
+ RNA_def_property_ui_text(prop, "Audio Sync", "Play back and sync with audio clock, dropping frames if frame display is too slow");
RNA_def_property_update(prop, NC_SCENE, NULL);
prop= RNA_def_property(srna, "scrub_audio", PROP_BOOLEAN, PROP_NONE);