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:
authorBrendon Murphy <meta.androcto1@gmail.com>2015-04-09 01:22:53 +0300
committerBrendon Murphy <meta.androcto1@gmail.com>2015-04-09 01:22:53 +0300
commit37d9aa7535923f39d8d7d45b797633f0f92a0679 (patch)
tree4bd0b6c347447775b34549004dcd4a61c291105e
parentee35df36d85cef5e961227f5e41bf03a49c4f1d2 (diff)
fix for last commit
-rw-r--r--space_view3d_materials_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py
index fe33a8f2..06dc6826 100644
--- a/space_view3d_materials_utils.py
+++ b/space_view3d_materials_utils.py
@@ -836,7 +836,7 @@ def register():
kc = bpy.context.window_manager.keyconfigs.addon
if kc:
km = kc.keymaps.new(name="3D View", space_type="VIEW_3D")
- kmi = km.keymap_items.new('wm.call_menu', 'Q', 'PRESS', ctrl=True)
+ kmi = km.keymap_items.new('wm.call_menu', 'Q', 'PRESS', shift=True)
kmi.properties.name = "VIEW3D_MT_master_material"