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:
authorDany Lebel <axonestudio@gmail.com>2011-05-26 05:50:45 +0400
committerDany Lebel <axonestudio@gmail.com>2011-05-26 05:50:45 +0400
commit3cfcf840e0e8a903fc49f74cace3c42038e80829 (patch)
treeb39d49b8e285bd5bcd2da845cdc6d7421e4f4ba9 /paint_palette.py
parent86bd3cc31b636070da779f21b1fdc128faf1fc5d (diff)
Corected the unregistering.
Diffstat (limited to 'paint_palette.py')
-rw-r--r--paint_palette.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/paint_palette.py b/paint_palette.py
index a8cc6299..be5bd128 100644
--- a/paint_palette.py
+++ b/paint_palette.py
@@ -23,15 +23,15 @@
bl_info = {
"name": "Paint Palettes",
"author": "Dany Lebel (Axon D)",
- "version": (0,8,1),
+ "version": (0,8,2),
"blender": (2, 5, 7),
- "api": 36722,
+ "api": 36826,
"location": "Image Editor and 3D View > Any Paint mode > Color Palette or Weight Palette panel",
"description": "Palettes for color and weight paint modes",
"warning": "beta",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Paint/Palettes",
"tracker_url": "http://projects.blender.org/tracker/index.php?func=detail&aid=25908",
- "category": "Other"}
+ "category": "Paint"}
"""
This addon brings palettes to the paint modes.
@@ -692,6 +692,7 @@ def register():
def unregister():
+ bpy.utils.unregister_module(__name__)
pass