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>2014-08-20 18:33:45 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2014-08-20 18:33:45 +0400
commitc0f917877e9ccb968ac597825d4e102823d18205 (patch)
tree49801dbb0a6f3a7c9baa31d3f56c2c1a4c368677 /space_view3d_materials_utils.py
parentc24bd5bb2f56043b6d988c42f426d46c80799def (diff)
Changed hotkey from Q to ctrl/Q to remove conflict with pie menus
Diffstat (limited to 'space_view3d_materials_utils.py')
-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 37da57d5..841ab8f8 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')
+ kmi = km.keymap_items.new('wm.call_menu', 'Q', 'PRESS', ctrl=True)
kmi.properties.name = "VIEW3D_MT_master_material"