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.]] --- space_view3d_materials_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'space_view3d_materials_utils.py') diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py index 2b928607..21eba8b1 100644 --- a/space_view3d_materials_utils.py +++ b/space_view3d_materials_utils.py @@ -673,12 +673,12 @@ class VIEW3D_MT_select_material(bpy.types.Menu): def register(): - km = bpy.context.window_manager.keyconfigs.active.keymaps['3D View'] + km = bpy.context.window_manager.keyconfigs.default.keymaps['3D View'] kmi = km.items.new('wm.call_menu', 'Q', 'PRESS') kmi.properties.name = "VIEW3D_MT_master_material" def unregister(): - km = bpy.context.window_manager.keyconfigs.active.keymaps['3D View'] + km = bpy.context.window_manager.keyconfigs.default.keymaps['3D View'] for kmi in km.items: if kmi.idname == 'wm.call_menu': if kmi.properties.name == "VIEW3D_MT_master_material": -- cgit v1.2.3