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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-09-16 22:37:19 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-09-16 22:37:19 +0400
commita549bab37f9b04414b56fa6c27ccdc5b584d880b (patch)
treee0b8a13effd0300fbab2c9aefebaf12b433fab7c /space_view3d_materials_utils.py
parent0b07efd6d48cfa3ce7dcaa768274c04a7f83fd99 (diff)
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.]]
Diffstat (limited to 'space_view3d_materials_utils.py')
-rw-r--r--space_view3d_materials_utils.py4
1 files changed, 2 insertions, 2 deletions
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":