Changed hotkey from Q to ctrl/Q to remove conflict with pie menus

This commit is contained in:
Brendon Murphy 2014-08-21 00:33:45 +10:00
parent c24bd5bb2f
commit c0f917877e
1 changed files with 1 additions and 1 deletions

View File

@ -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')
kmi = km.keymap_items.new('wm.call_menu', 'Q', 'PRESS', ctrl=True)
kmi.properties.name = "VIEW3D_MT_master_material"