[Bf-extensions-cvs] [28962106] master: fix: blender 2.80 class name conventions

Gaia Clary noreply at git.blender.org
Sun Mar 31 21:17:17 CEST 2019


Commit: 2896210678ce9f6fe7a8bd93457e38a2c1bfc17f
Author: Gaia Clary
Date:   Sun Mar 31 21:16:01 2019 +0200
Branches: master
https://developer.blender.org/rBA2896210678ce9f6fe7a8bd93457e38a2c1bfc17f

fix: blender 2.80 class name conventions

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

M	space_view3d_math_vis/__init__.py

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

diff --git a/space_view3d_math_vis/__init__.py b/space_view3d_math_vis/__init__.py
index 0dcb7b7a..f64de364 100644
--- a/space_view3d_math_vis/__init__.py
+++ b/space_view3d_math_vis/__init__.py
@@ -63,7 +63,7 @@ class PanelConsoleVars(Panel):
     bl_region_type = 'WINDOW'
     bl_context = 'scene'
     bl_label = "Math Vis Console"
-    bl_idname = "mathvis.panel_console_vars"
+    bl_idname = "MATHVIS_PT_panel_console_vars"
     bl_category = "Math Vis"
     bl_options = {'DEFAULT_CLOSED'}
 
@@ -182,6 +182,7 @@ class MathVisStateProp(PropertyGroup):
 
 
 class MathVisVarList(UIList):
+    bl_idname = "MATHVIS_UL_MathVisVarList"
 
     def draw_item(self,
                   context,



More information about the Bf-extensions-cvs mailing list