Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2021-03-18 19:24:02 +0300
committerAntonio Vazquez <blendergit@gmail.com>2021-03-18 19:24:20 +0300
commit51c7ff9222c362e03d07aba0ebbffd9d52fc9d3b (patch)
tree6ae09328d44db8e705a506e68f3419f47d2ecded
parent1e1d96f0a87c7ad72d54ae00d9b4f93307aba5ad (diff)
GPencil: Rename Options panel to Settings
This change is to keep consistency with other panels with the same functionality. Reviewed by @pablovazquez
-rw-r--r--release/scripts/startup/bl_ui/properties_material_gpencil.py6
1 files changed, 3 insertions, 3 deletions
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,
)