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:
authorWilliam Reynish <billrey@me.com>2019-03-16 14:54:08 +0300
committerWilliam Reynish <billrey@me.com>2019-03-16 14:54:08 +0300
commit03ee447dd2d2b2000ff9019f7f80984a0e895865 (patch)
treed4ddf04bcd4213407287b7257968d710ce9a8466
parentcabb53effa71d61684aea083c56bd5db3b3ac0c9 (diff)
UI: Remove redundant 'settings' from GPencil Tool Properties panel titles
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index f95796a3cde..0f7305800be 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1550,7 +1550,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_option(View3DPanel, Panel):
class VIEW3D_PT_tools_grease_pencil_brush_stabilizer(View3DPanel, Panel):
bl_context = ".greasepencil_paint"
bl_parent_id = 'VIEW3D_PT_tools_grease_pencil_brush_option'
- bl_label = "Stabilizer Settings"
+ bl_label = "Stabilize"
bl_options = {'DEFAULT_CLOSED'}
@classmethod
@@ -1579,7 +1579,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_stabilizer(View3DPanel, Panel):
class VIEW3D_PT_tools_grease_pencil_brush_settings(View3DPanel, Panel):
bl_context = ".greasepencil_paint"
bl_parent_id = 'VIEW3D_PT_tools_grease_pencil_brush_option'
- bl_label = "Post-processing Settings"
+ bl_label = "Post-Processing"
bl_options = {'DEFAULT_CLOSED'}
@classmethod
@@ -1620,7 +1620,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_settings(View3DPanel, Panel):
class VIEW3D_PT_tools_grease_pencil_brush_random(View3DPanel, Panel):
bl_context = ".greasepencil_paint"
bl_parent_id = 'VIEW3D_PT_tools_grease_pencil_brush_option'
- bl_label = "Random Settings"
+ bl_label = "Randomize"
bl_options = {'DEFAULT_CLOSED'}
@classmethod