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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugenio Pignataro <info@oscurart.com.ar>2019-03-25 18:47:49 +0300
committerEugenio Pignataro <info@oscurart.com.ar>2019-03-25 18:47:49 +0300
commit10774f807b8bfd241a71f6360db26a0d288e206f (patch)
treee787d6b29094c6dc4b1212dddd75bfe073163a9a /oscurart_tools
parentd8177d9e92b40e824ff5fb86cb35494c70aa0d8a (diff)
Fix: GUI OT PT Sufix fix
Diffstat (limited to 'oscurart_tools')
-rw-r--r--oscurart_tools/__init__.py4
-rw-r--r--oscurart_tools/object/selection.py2
-rw-r--r--oscurart_tools/render/material_overrides.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/oscurart_tools/__init__.py b/oscurart_tools/__init__.py
index 119dc004..874094c0 100644
--- a/oscurart_tools/__init__.py
+++ b/oscurart_tools/__init__.py
@@ -140,7 +140,7 @@ classes = (
overlap_uvs.CopyUvIsland,
overlap_uvs.PasteUvIsland,
distribute.DistributeOsc,
- selection.OscSelection,
+ selection.OSSELECTION_HT_OscSelection,
save_incremental.saveIncrementalBackup,
collect_images.collectImagesOsc,
overlap_island.OscOverlapUv,
@@ -151,7 +151,7 @@ classes = (
batch_maker.oscBatchMaker,
remove_modifiers.RemoveModifiers,
vertex_color_id.createVCMask,
- material_overrides.OscOverridesGUI,
+ material_overrides.OVERRIDES_PT_OscOverridesGUI,
material_overrides.OscTransferOverrides,
material_overrides.OscAddOverridesSlot,
material_overrides.OscRemoveOverridesSlot,
diff --git a/oscurart_tools/object/selection.py b/oscurart_tools/object/selection.py
index c2a264bc..39f6b603 100644
--- a/oscurart_tools/object/selection.py
+++ b/oscurart_tools/object/selection.py
@@ -48,7 +48,7 @@ def select_osc():
bpy.selection_osc.remove(it)
-class OscSelection(bpy.types.Header):
+class OSSELECTION_HT_OscSelection(bpy.types.Header):
bl_label = "Selection Osc"
bl_space_type = "VIEW_3D"
diff --git a/oscurart_tools/render/material_overrides.py b/oscurart_tools/render/material_overrides.py
index 10d8096c..45545f8c 100644
--- a/oscurart_tools/render/material_overrides.py
+++ b/oscurart_tools/render/material_overrides.py
@@ -37,9 +37,9 @@ bpy.utils.register_class(OscOverridesProp)
bpy.types.Scene.ovlist = bpy.props.CollectionProperty(type=OscOverridesProp)
-class OscOverridesGUI(bpy.types.Panel):
+class OVERRIDES_PT_OscOverridesGUI(bpy.types.Panel):
bl_label = "Oscurart Material Overrides"
- bl_idname = "Oscurart Overrides List"
+ bl_idname = "OVERRIDES_PT_layout"
bl_space_type = "PROPERTIES"
bl_region_type = "WINDOW"
bl_context = "render"