[Bf-blender-cvs] [33b0d64b244] greasepencil-object: UI: Change Simplify Name

Antonio Vazquez noreply at git.blender.org
Sat Jan 6 17:02:33 CET 2018


Commit: 33b0d64b24486a4e521d15e2092cb35bbaa3b218
Author: Antonio Vazquez
Date:   Sat Jan 6 17:02:17 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rB33b0d64b24486a4e521d15e2092cb35bbaa3b218

UI: Change Simplify Name

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index ffc37b98dc9..8c3a0a90bfb 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -228,8 +228,8 @@ class GreasePencilStrokeEditPanel:
         layout.separator()
         col = layout.column(align=True)
         col.operator("gpencil.stroke_subdivide", text="Subdivide")
-        col.operator("gpencil.stroke_simplify", text="Simplify")
-        col.operator("gpencil.stroke_simplify_fixed", text="Simplify Fixed")
+        col.operator("gpencil.stroke_simplify_fixed", text="Simplify")
+        col.operator("gpencil.stroke_simplify", text="Simplify Adaptative")
         col.operator("gpencil.stroke_join", text="Join").type = 'JOIN'
         col.operator("gpencil.stroke_join", text="Join & Copy").type = 'JOINCOPY'
         col.operator("gpencil.stroke_flip", text="Flip Direction")
@@ -970,8 +970,8 @@ class GPENCIL_MT_gpencil_edit_specials(Menu):
         layout.operator_context = 'INVOKE_REGION_WIN'
 
         layout.operator("gpencil.stroke_subdivide", text="Subdivide")
-        layout.operator("gpencil.stroke_simplify", text="Simplify")
-        layout.operator("gpencil.stroke_simplify_fixed", text="Simplify Fixed")
+        layout.operator("gpencil.stroke_simplify_fixed", text="Simplify")
+        layout.operator("gpencil.stroke_simplify", text="Simplify Adaptative")
 
         layout.separator()
 
@@ -1002,8 +1002,8 @@ class GPENCIL_MT_gpencil_sculpt_specials(Menu):
         layout.separator()
 
         layout.operator("gpencil.stroke_subdivide", text="Subdivide")
-        layout.operator("gpencil.stroke_simplify", text="Simplify")
-        layout.operator("gpencil.stroke_simplify_fixed", text="Simplify Fixed")
+        layout.operator("gpencil.stroke_simplify_fixed", text="Simplify")
+        layout.operator("gpencil.stroke_simplify", text="Simplify Adaptative")
 
 
 class GPENCIL_MT_gpencil_draw_specials(Menu):



More information about the Bf-blender-cvs mailing list