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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-05-20 15:45:41 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-05-20 15:52:57 +0300
commit44a6109ca96165d6240979cd39d2d9869b93f020 (patch)
tree58692f9de026ababc1066c44d56903b98bb77622 /release/scripts
parent77ef3f9041edea39b1d036e048a8ac35e388520d (diff)
Clip Editor: Make it more obvious that Rebuild Proxy also rebuilds Timecode
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index f12f980e178..ecfab471ddc 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -987,7 +987,9 @@ class CLIP_PT_proxy(CLIP_PT_clip_view_panel, Panel):
if clip.use_proxy_custom_directory:
col.prop(clip.proxy, "directory")
- col.operator("clip.rebuild_proxy", text="Build Proxy")
+ col.operator("clip.rebuild_proxy",
+ text="Build Proxy / Timecode" if clip.source == 'MOVIE' \
+ else "Build Proxy")
if clip.source == 'MOVIE':
col2 = col.column()