Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-01-07 03:16:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-07 03:16:11 +0300
commit96f762500ef99ec495b77599449ed258bf691763 (patch)
tree0b43b736ea6d7ea65abbccd57bf49a741b0098a9 /release
parent430cf7e15eef9b5f2aa7216f298b482a3163b02b (diff)
Cleanup: tweak last commit
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py b/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py
index c49056117bf..a1a65a44750 100644
--- a/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py
+++ b/release/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py
@@ -230,19 +230,23 @@ def generate(context, space_type):
kmi_first = km.keymap_items
kmi_first = kmi_first[0] if kmi_first else None
if kmi_first is not None:
- # We need 'MOUSE' so keys with 'key_modifier' are found.
- for kmi_type in ('KEYBOARD', 'MOUSE'):
+ kmi_found = wm.keyconfigs.find_item_from_operator(
+ idname=kmi_first.idname,
+ # properties=kmi_first.properties, # prevents matches, don't use.
+ context='INVOKE_REGION_WIN',
+ include={'KEYBOARD'},
+ )[1]
+ if kmi_found is None:
+ # We need non-keyboard events so keys with 'key_modifier' key is found.
kmi_found = wm.keyconfigs.find_item_from_operator(
idname=kmi_first.idname,
# properties=kmi_first.properties, # prevents matches, don't use.
context='INVOKE_REGION_WIN',
- include={kmi_type},
+ exclude={'KEYBOARD'},
)[1]
if kmi_found is not None:
- if (kmi_type == 'MOUSE') and (kmi_found.key_modifier == 'NONE'):
+ if kmi_found.key_modifier == 'NONE':
kmi_found = None
- if kmi_found is not None:
- break
else:
kmi_found = None
del kmi_first