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>2011-03-26 12:21:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-26 12:21:33 +0300
commitdb70de6f3b9da3358b72018d25598823c4f041c7 (patch)
treeaaa9b149dad911e28988ec2a2111bea6adfd9ab6 /mesh_surface_sketch.py
parent007092f081d7a7a5f453ebd7c89e859dfce39d8e (diff)
patch [#26620] Correction leakage [#26601] Python error when use of autocomplete
from perfection cat (sindra1961)
Diffstat (limited to 'mesh_surface_sketch.py')
-rw-r--r--mesh_surface_sketch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh_surface_sketch.py b/mesh_surface_sketch.py
index 5587730b..7863aaec 100644
--- a/mesh_surface_sketch.py
+++ b/mesh_surface_sketch.py
@@ -798,8 +798,8 @@ def register():
km = kc.keymaps.get("3D View")
if km is None:
km = kc.keymaps.new(name="3D View")
- keymap_item_add_surf = km.items.new(GPENCIL_OT_surfsk_surface_add.bl_idname,"E","PRESS", key_modifier="D")
- keymap_item_stroke_to_curve = km.items.new(GPENCIL_OT_surfsk_strokes_to_curves.bl_idname,"C","PRESS", key_modifier="D")
+ keymap_item_add_surf = km.keymap_items.new(GPENCIL_OT_surfsk_surface_add.bl_idname,"E","PRESS", key_modifier="D")
+ keymap_item_stroke_to_curve = km.keymap_items.new(GPENCIL_OT_surfsk_strokes_to_curves.bl_idname,"C","PRESS", key_modifier="D")
def unregister():