[Bf-blender-cvs] [bc74e3a0d4c] soc-2020-info-editor: Keymap: apply info editor changes to industry compat keymap

Mateusz Grzeliński noreply at git.blender.org
Sun Jun 7 10:57:53 CEST 2020


Commit: bc74e3a0d4c87dfbc95616148c7f15c480a521a2
Author: Mateusz Grzeliński
Date:   Sun Jun 7 10:55:17 2020 +0200
Branches: soc-2020-info-editor
https://developer.blender.org/rBbc74e3a0d4c87dfbc95616148c7f15c480a521a2

Keymap: apply info editor changes to industry compat keymap

===================================================================

M	release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py

===================================================================

diff --git a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
index 3698db4cf94..e53a5513213 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -1162,9 +1162,13 @@ def km_info(params):
     items.extend([
         op_panel("TOPBAR_PT_name", {"type": 'RET', "value": 'PRESS'}, [("keep_open", False)]),
         ("wm.search_menu", {"type": 'TAB', "value": 'PRESS'}, None),
-        ("info.select_pick", {"type": 'LEFTMOUSE', "value": 'PRESS'}, None),
-        ("info.select_pick", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},
-         {"properties": [("extend", True)]}),
+        ("info.select_pick", {"type": 'LEFTMOUSE', "value": 'CLICK'}, None),
+        ("info.select_pick", {"type": 'LEFTMOUSE', "value": 'CLICK', "ctrl": True},
+         {"properties": [("extend", True), ("deselect_all", False)]}),
+        ("info.select_pick", {"type": 'LEFTMOUSE', "value": 'CLICK', "shift": True},
+         {"properties": [("extend_range", True)]}),
+        ("info.select_pick", {"type": 'LEFTMOUSE', "value": 'CLICK', "ctrl": True, "shift": True},
+         {"properties": [("deselect_all", False), ("extend_range", True)]}),
         ("info.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'},
          {"properties": [("wait_for_input", False)]}),
         ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True},



More information about the Bf-blender-cvs mailing list