[Bf-blender-cvs] [a7c7d235429] greasepencil-object: UI Tweak: Rename "Grease Pencil" menu in 3D View to "Strokes"

Joshua Leung noreply at git.blender.org
Mon Apr 16 19:09:14 CEST 2018


Commit: a7c7d235429a9e523a9f9127a7c85e0930135549
Author: Joshua Leung
Date:   Mon Apr 16 19:01:01 2018 +0200
Branches: greasepencil-object
https://developer.blender.org/rBa7c7d235429a9e523a9f9127a7c85e0930135549

UI Tweak: Rename "Grease Pencil" menu in 3D View to "Strokes"

Menu names in general should be a single word. Having two separate words makes it
visually confusing (i.e. it looked like there were 4 menu items, when in fact there
were only 3). Since the operators here operate on the GP strokes, it's reasonable
to use this term instead.

(Discussed with William as part of an informal UI review of GP branch)

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 3c61ab240a9..d6c514f7277 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3304,7 +3304,7 @@ class VIEW3D_MT_edit_armature_delete(Menu):
 
 
 class VIEW3D_MT_edit_gpencil(Menu):
-    bl_label = "Grease Pencil"
+    bl_label = "Strokes"
 
     def draw(self, context):
         toolsettings = context.tool_settings



More information about the Bf-blender-cvs mailing list