[Bf-blender-cvs] [28c08117ef2] greasepencil-object: UI: Hide Opacity and Thickness in Annotations panel

Antonioya noreply at git.blender.org
Mon Jul 30 13:48:44 CEST 2018


Commit: 28c08117ef2023de7d55d76176575047a8fe02b6
Author: Antonioya
Date:   Mon Jul 30 13:48:34 2018 +0200
Branches: greasepencil-object
https://developer.blender.org/rB28c08117ef2023de7d55d76176575047a8fe02b6

UI: Hide Opacity and Thickness in Annotations panel

We hide these parameters while we decide if they are required or not, but now it's better keep hidden.

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

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 7b05a4d8b95..252f87d369f 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -764,10 +764,10 @@ class GreasePencilDataPanel:
                 sub.operator("gpencil.layer_move", icon='TRIA_DOWN', text="").type = 'DOWN'
 
         if gpl:
-            layout.prop(gpl, "opacity", text="Opacity", slider=True)
-            layout.prop(gpl, "thickness", text="Thickness")
-
-            layout.separator()
+            # layout.prop(gpl, "opacity", text="Opacity", slider=True)
+            # layout.prop(gpl, "thickness", text="Thickness")
+            #
+            # layout.separator()
 
             # Full-Row - Frame Locking (and Delete Frame)
             row = layout.row(align=True)



More information about the Bf-blender-cvs mailing list