[Bf-blender-cvs] [36b64064f13] greasepencil-object: GP Toolbar UI: Move the "Eraser" and "Brush Appearance" panels to the Tools tab in Draw Mode

Joshua Leung noreply at git.blender.org
Tue Feb 6 15:05:52 CET 2018


Commit: 36b64064f131f453a1376aa0fa0056ffb06ce849
Author: Joshua Leung
Date:   Wed Feb 7 03:04:28 2018 +1300
Branches: greasepencil-object
https://developer.blender.org/rB36b64064f131f453a1376aa0fa0056ffb06ce849

GP Toolbar UI: Move the "Eraser" and "Brush Appearance" panels to the Tools tab in Draw Mode

It was awkward having these in the "Options" tab, where they were
likely to get missed. This change will perhaps make more sense
after some of my other upcoming changes here.

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

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 60f9590872e..2dbf2bce444 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -663,8 +663,8 @@ class GreasePencilMultiFramePanel:
 
 
 class GreasePencilAppearancePanel:
-    bl_label = "Appearance"
-    bl_category = "Options"
+    bl_label = "Brush Appearance"
+    bl_category = "Tools"
     bl_region_type = 'TOOLS'
     bl_options = {'DEFAULT_CLOSED'}
 
@@ -700,7 +700,7 @@ class GreasePencilAppearancePanel:
 
 class GreasePencilEraserPanel:
     bl_label = "Eraser"
-    bl_category = "Options"
+    bl_category = "Tools"
     bl_region_type = 'TOOLS'
     bl_options = {'DEFAULT_CLOSED'}



More information about the Bf-blender-cvs mailing list