[Bf-blender-cvs] [5d8030b8f3c] master: Industry Compat keymap: Fix loop selection

William Reynish noreply at git.blender.org
Tue Apr 16 22:13:29 CEST 2019


Commit: 5d8030b8f3cfff1b83d7e2d98359a8dc51f78711
Author: William Reynish
Date:   Tue Apr 16 22:13:25 2019 +0200
Branches: master
https://developer.blender.org/rB5d8030b8f3cfff1b83d7e2d98359a8dc51f78711

Industry Compat keymap: Fix loop selection

- Extending loops wasn't working correctly. This is now fixed.
- Also added ability to deselect loops by holding Ctrl and double-clicking

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

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 be13b538507..4eb13b263c6 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -3004,7 +3004,9 @@ def km_mesh(params):
         ("mesh.loop_select", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK'},
          {"properties": [("extend", False), ("deselect", False), ("toggle", False)]}),
         ("mesh.loop_select", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "shift": True},
-         {"properties": [("extend", False), ("deselect", False), ("toggle", True)]}),
+         {"properties": [("extend", True), ("deselect", False), ("toggle", False)]}),
+        ("mesh.loop_select", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "ctrl": True},
+         {"properties": [("extend", False), ("deselect", True), ("toggle", False)]}),
         # Selection
         ("mesh.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}),
         ("mesh.select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, {"properties": [("action", 'DESELECT')]}),



More information about the Bf-blender-cvs mailing list