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:
authorJoshua Leung <aligorith@gmail.com>2009-11-27 14:19:13 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-27 14:19:13 +0300
commit692115356c45e3da8ff8dd7531c4a237dea8e317 (patch)
tree1b96c4420c8631cff7ab7341eb4629626237df93 /release/scripts/ui
parent993da72d06753dd32b86c9664eaaf0a7ccb4d018 (diff)
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.
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/space_time.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py
index 3c855816578..de8d1eb96ab 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="", toggle=True, icon='ICON_SPEAKER')
+ layout.prop(scene, "sync_audio", text="Realtime", toggle=True, icon='ICON_SPEAKER')
layout.separator()
@@ -145,7 +145,7 @@ class TIME_MT_playback(bpy.types.Menu):
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")