From a549bab37f9b04414b56fa6c27ccdc5b584d880b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 16 Sep 2010 18:37:19 +0000 Subject: Related to #23861: addons now modify keyconfigs.default instead of keyconfigs.active, this is consistent with internal operators, and means you're not messing with user edited data in register/unregister. [[Split portion of a mixed commit.]] --- mesh_surface_sketch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mesh_surface_sketch.py') diff --git a/mesh_surface_sketch.py b/mesh_surface_sketch.py index 46f2f21d..fb08e490 100644 --- a/mesh_surface_sketch.py +++ b/mesh_surface_sketch.py @@ -793,8 +793,8 @@ def register(): bpy.types.Scene.SURFSK_precision = bpy.props.IntProperty(name="Precision", description="Precision level of the surface calculation", default=4, min=0, max=100000) bpy.types.Scene.SURFSK_keep_strokes = bpy.props.BoolProperty(name="Keep strokes", description="Keeps the sketched strokes after adding the surface", default=False) - keymap_item_add_surf = bpy.data.window_managers[0].keyconfigs.active.keymaps["3D View"].items.new("GPENCIL_OT_SURFSK_add_surface","E","PRESS", key_modifier="D") - keymap_item_stroke_to_curve = bpy.data.window_managers[0].keyconfigs.active.keymaps["3D View"].items.new("GPENCIL_OT_SURFSK_strokes_to_curves","C","PRESS", key_modifier="D") + keymap_item_add_surf = bpy.data.window_managers[0].keyconfigs.default.keymaps["3D View"].items.new("GPENCIL_OT_SURFSK_add_surface","E","PRESS", key_modifier="D") + keymap_item_stroke_to_curve = bpy.data.window_managers[0].keyconfigs.default.keymaps["3D View"].items.new("GPENCIL_OT_SURFSK_strokes_to_curves","C","PRESS", key_modifier="D") def unregister(): @@ -803,7 +803,7 @@ def unregister(): del bpy.types.Scene.SURFSK_precision del bpy.types.Scene.SURFSK_keep_strokes - km = bpy.data.window_managers[0].keyconfigs.active.keymaps["3D View"] + km = bpy.data.window_managers[0].keyconfigs.default.keymaps["3D View"] for kmi in km.items: if kmi.idname == 'wm.call_menu': if kmi.properties.name == "GPENCIL_OT_SURFSK_add_surface": -- cgit v1.2.3