[Bf-blender-cvs] [2c92900a477] master: Industry Compat Keymap: Fix Select All operators in the Info Editor

William Reynish noreply at git.blender.org
Sun May 5 17:42:23 CEST 2019


Commit: 2c92900a47784c9d3b121e3763444a62d4752deb
Author: William Reynish
Date:   Sun May 5 17:42:18 2019 +0200
Branches: master
https://developer.blender.org/rB2c92900a47784c9d3b121e3763444a62d4752deb

Industry Compat Keymap: Fix Select All operators in the Info Editor

Patch by Valentin (Poulpator)

Differential Revision: https://developer.blender.org/D4746

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

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 b4a466c0257..c0d262e863e 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -1124,9 +1124,12 @@ def km_info(params):
          {"properties": [("extend", True)]}),
         ("info.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'},
          {"properties": [("wait_for_input", False)]}),
-        ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}),
-        ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, None),
-        ("info.select_all", {"type": 'I', "value": 'PRESS', "ctrl": True}, None),
+        ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True},
+         {"properties": [("action", 'SELECT')]}),
+        ("info.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True},
+         {"properties": [("action", 'DESELECT')]}),
+        ("info.select_all", {"type": 'I', "value": 'PRESS', "ctrl": True},
+         {"properties": [("action", 'INVERT')]}),
         ("info.select_box", {"type": 'Q', "value": 'PRESS'}, None),
         ("info.report_replay", {"type": 'R', "value": 'PRESS'}, None),
         ("info.report_delete", {"type": 'BACK_SPACE', "value": 'PRESS'}, None),



More information about the Bf-blender-cvs mailing list