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:
authorCampbell Barton <ideasman42@gmail.com>2010-06-28 01:21:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-06-28 01:21:55 +0400
commitec355ba3cfb2c9e97c385859a6e39ca92b8b30d7 (patch)
treef9f54ad688e6107400dd20d741278df776a5f646
parent69a384d3ed2608ae6cf064dd33c9293908b955e6 (diff)
minor fixes
-rw-r--r--io_mesh_raw/__init__.py2
-rw-r--r--mesh_surface_sketch.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py
index cab63b04..74474c09 100644
--- a/io_mesh_raw/__init__.py
+++ b/io_mesh_raw/__init__.py
@@ -20,7 +20,7 @@ bl_addon_info = {
'name': 'I/O: Raw mesh',
'author': 'Anthony D,Agostino (Scorpius), Aurel Wildfellner',
'version': '0.2',
- 'blender': '2.5.3',
+ 'blender': (2, 5, 3),
'location': 'File > Import/Export > Raw faces ',
'description': 'Import Raw Faces (.raw format)',
'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
diff --git a/mesh_surface_sketch.py b/mesh_surface_sketch.py
index 1b13a934..7f573df7 100644
--- a/mesh_surface_sketch.py
+++ b/mesh_surface_sketch.py
@@ -811,6 +811,7 @@ def unregister():
bpy.types.unregister(GPENCIL_OT_SURFSK_add_surface)
bpy.types.unregister(GPENCIL_OT_SURFSK_strokes_to_curves)
bpy.types.unregister(VIEW3D_PT_tools_SURF_SKETCH)
+ km = bpy.data.window_managers[0].active_keyconfig.keymaps["3D View"]
for kmi in km.items:
if kmi.idname == 'wm.call_menu':
if kmi.properties.name == "GPENCIL_OT_SURFSK_add_surface":