[Bf-blender-cvs] [e09d0b1330a] lanpr-under-gp: LANPR: Object LANPR panel name change to Lineart.

YimingWu noreply at git.blender.org
Sat Jun 27 10:22:02 CEST 2020


Commit: e09d0b1330aaa4e69f251d87514588c309393d73
Author: YimingWu
Date:   Sat Jun 27 16:21:54 2020 +0800
Branches: lanpr-under-gp
https://developer.blender.org/rBe09d0b1330aaa4e69f251d87514588c309393d73

LANPR: Object LANPR panel name change to Lineart.

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_lineart.py b/release/scripts/startup/bl_ui/properties_lineart.py
index d30963648ec..53288305db3 100644
--- a/release/scripts/startup/bl_ui/properties_lineart.py
+++ b/release/scripts/startup/bl_ui/properties_lineart.py
@@ -19,7 +19,7 @@
 # <pep8 compliant>
 from bpy.types import Panel
 
-class LanprButtonsPanel:
+class LineartButtonsPanel:
     bl_space_type = 'PROPERTIES'
     bl_region_type = 'WINDOW'
     bl_context = "lineart"
@@ -30,7 +30,7 @@ def lineart_make_line_type_entry(col, line_type, text_disp, expand, search_from)
         col.prop_search(line_type, "layer", search_from, "layers", icon='GREASEPENCIL')
         col.prop_search(line_type, "material",  search_from, "materials", icon='SHADING_TEXTURE')
 
-class OBJECT_PT_lineart_settings(LanprButtonsPanel, Panel):
+class OBJECT_PT_lineart_settings(LineartButtonsPanel, Panel):
     bl_label = "LRT settings"
 
     @classmethod
@@ -70,7 +70,7 @@ class OBJECT_PT_lineart_settings(LanprButtonsPanel, Panel):
         lineart_make_line_type_entry(layout, obl.edge_mark, "Edge Mark", expand, obl.target.data)
 
 
-class OBJECT_PT_lineart(LanprButtonsPanel, Panel):
+class OBJECT_PT_lineart(LineartButtonsPanel, Panel):
     bl_label = "Usage"
 
     @classmethod



More information about the Bf-blender-cvs mailing list