[Bf-blender-cvs] [5f46374c89e] master: UI correct use of "..." in the VSE

Aaron Carlisle noreply at git.blender.org
Mon May 29 02:41:30 CEST 2017


Commit: 5f46374c89e8823f641c6da1354678467727f746
Author: Aaron Carlisle
Date:   Sun May 28 20:41:23 2017 -0400
Branches: master
https://developer.blender.org/rB5f46374c89e8823f641c6da1354678467727f746

UI correct use of "..." in the VSE

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

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




More information about the Bf-blender-cvs mailing list