[Bf-blender-cvs] [61bb70e0c7a] master: GPencil: Fix unreported double stroke color in materials panel

Antonio Vazquez noreply at git.blender.org
Mon Oct 25 13:14:59 CEST 2021


Commit: 61bb70e0c7a2099639ebe3b87d770cc4d4023001
Author: Antonio Vazquez
Date:   Mon Oct 25 13:14:43 2021 +0200
Branches: master
https://developer.blender.org/rB61bb70e0c7a2099639ebe3b87d770cc4d4023001

GPencil: Fix unreported double stroke color in materials panel

There was an extra stroke color in the side panel, but this prop must be visible only in Topbar.

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

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 c31881fa194..6ca13674234 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -591,7 +591,7 @@ class GreasePencilMaterialsPanel:
                 if len(ob.material_slots) > 0 and ob.active_material_index >= 0:
                     ma = ob.material_slots[ob.active_material_index].material
 
-            if ma is not None and ma.grease_pencil is not None:
+            if is_view3d and ma is not None and ma.grease_pencil is not None:
                 gpcolor = ma.grease_pencil
                 if gpcolor.stroke_style == 'SOLID':
                     row = layout.row()



More information about the Bf-blender-cvs mailing list