[Bf-blender-cvs] [392a1d8a9f9] ui-asset-view-template: GPencil: Rename Options panel to Settings

Antonio Vazquez noreply at git.blender.org
Sun Mar 21 16:11:59 CET 2021


Commit: 392a1d8a9f9a37476248c6d7ea600b1344ef1470
Author: Antonio Vazquez
Date:   Thu Mar 18 17:24:02 2021 +0100
Branches: ui-asset-view-template
https://developer.blender.org/rB392a1d8a9f9a37476248c6d7ea600b1344ef1470

GPencil: Rename Options panel to Settings

This change is to keep consistency with other panels with the same functionality.

Reviewed by @pablovazquez

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_material_gpencil.py b/release/scripts/startup/bl_ui/properties_material_gpencil.py
index 7c8f6b2309a..6a5c000116f 100644
--- a/release/scripts/startup/bl_ui/properties_material_gpencil.py
+++ b/release/scripts/startup/bl_ui/properties_material_gpencil.py
@@ -245,8 +245,8 @@ class MATERIAL_PT_gpencil_custom_props(GPMaterialButtonsPanel, PropertyPanel, Pa
     _property_type = bpy.types.Material
 
 
-class MATERIAL_PT_gpencil_options(GPMaterialButtonsPanel, Panel):
-    bl_label = "Options"
+class MATERIAL_PT_gpencil_settings(GPMaterialButtonsPanel, Panel):
+    bl_label = "Settings"
     bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):
@@ -275,7 +275,7 @@ classes = (
     MATERIAL_PT_gpencil_surface,
     MATERIAL_PT_gpencil_strokecolor,
     MATERIAL_PT_gpencil_fillcolor,
-    MATERIAL_PT_gpencil_options,
+    MATERIAL_PT_gpencil_settings,
     MATERIAL_PT_gpencil_custom_props,
 )



More information about the Bf-blender-cvs mailing list