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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2017-05-29 03:41:23 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2017-05-29 03:41:23 +0300
commit5f46374c89e8823f641c6da1354678467727f746 (patch)
tree577ec5b790a055557df83e591276d89174bdda73 /release
parent8051f2412ecb071b196ff3d3ca8a7988fc4b7a97 (diff)
UI correct use of "..." in the VSE
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 5df02c82e36..6737b8e1089 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -338,19 +338,19 @@ class SEQUENCER_MT_add(Menu):
if len(bpy.data.scenes) > 10:
layout.operator_context = 'INVOKE_DEFAULT'
- layout.operator("sequencer.scene_strip_add", text="Scene...")
+ layout.operator("sequencer.scene_strip_add", text="Scene")
else:
layout.operator_menu_enum("sequencer.scene_strip_add", "scene", text="Scene...")
if len(bpy.data.movieclips) > 10:
layout.operator_context = 'INVOKE_DEFAULT'
- layout.operator("sequencer.movieclip_strip_add", text="Clips...")
+ layout.operator("sequencer.movieclip_strip_add", text="Clips")
else:
layout.operator_menu_enum("sequencer.movieclip_strip_add", "clip", text="Clip...")
if len(bpy.data.masks) > 10:
layout.operator_context = 'INVOKE_DEFAULT'
- layout.operator("sequencer.mask_strip_add", text="Masks...")
+ layout.operator("sequencer.mask_strip_add", text="Masks")
else:
layout.operator_menu_enum("sequencer.mask_strip_add", "mask", text="Mask...")
@@ -362,7 +362,7 @@ class SEQUENCER_MT_add(Menu):
class SEQUENCER_MT_add_effect(Menu):
- bl_label = "Effect Strip..."
+ bl_label = "Effect Strip"
def draw(self, context):
layout = self.layout