[Bf-blender-cvs] [15f0315ab1e] master: Keymap: Add Ctrl-SelectMouse in to box-deselect

Campbell Barton noreply at git.blender.org
Wed Jun 12 02:45:11 CEST 2019


Commit: 15f0315ab1e57d465584525f4c01a27cf7a25601
Author: Campbell Barton
Date:   Wed Jun 12 10:42:57 2019 +1000
Branches: master
https://developer.blender.org/rB15f0315ab1e57d465584525f4c01a27cf7a25601

Keymap: Add Ctrl-SelectMouse in to box-deselect

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

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

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

diff --git a/release/scripts/presets/keyconfig/keymap_data/blender_default.py b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
index 10ebb80df91..1e34b5699fb 100644
--- a/release/scripts/presets/keyconfig/keymap_data/blender_default.py
+++ b/release/scripts/presets/keyconfig/keymap_data/blender_default.py
@@ -1378,6 +1378,8 @@ def km_graph_editor(params):
          {"properties": [("tweak", True), ("mode", 'SET')]}),
         ("graph.select_box", {"type": params.select_tweak, "value": 'ANY', "shift": True},
          {"properties": [("tweak", True), ("mode", 'ADD')]}),
+        ("graph.select_box", {"type": params.select_tweak, "value": 'ANY', "ctrl": True},
+         {"properties": [("tweak", True), ("mode", 'SUB')]}),
         ("graph.select_lasso", {"type": params.action_tweak, "value": 'ANY', "ctrl": True},
          {"properties": [("mode", 'ADD')]}),
         ("graph.select_lasso", {"type": params.action_tweak, "value": 'ANY', "shift": True, "ctrl": True},
@@ -1904,6 +1906,8 @@ def km_dopesheet(params):
          {"properties": [("tweak", True), ("mode", 'SET')]}),
         ("action.select_box", {"type": params.select_tweak, "value": 'ANY', "shift": True},
          {"properties": [("tweak", True), ("mode", 'ADD')]}),
+        ("action.select_box", {"type": params.select_tweak, "value": 'ANY', "ctrl": True},
+         {"properties": [("tweak", True), ("mode", 'SUB')]}),
         ("action.select_lasso", {"type": params.action_tweak, "value": 'ANY', "ctrl": True},
          {"properties": [("mode", 'ADD')]}),
         ("action.select_lasso", {"type": params.action_tweak, "value": 'ANY', "shift": True, "ctrl": True},
@@ -2043,6 +2047,8 @@ def km_nla_editor(params):
          {"properties": [("tweak", True), ("mode", 'SET')]}),
         ("nla.select_box", {"type": params.select_tweak, "value": 'ANY', "shift": True},
          {"properties": [("tweak", True), ("mode", 'ADD')]}),
+        ("nla.select_box", {"type": params.select_tweak, "value": 'ANY', "ctrl": True},
+         {"properties": [("tweak", True), ("mode", 'SUB')]}),
         ("nla.previewrange_set", {"type": 'P', "value": 'PRESS', "ctrl": True, "alt": True}, None),
         ("nla.view_all", {"type": 'HOME', "value": 'PRESS'}, None),
         ("nla.view_all", {"type": 'NDOF_BUTTON_FIT', "value": 'PRESS'}, None),



More information about the Bf-blender-cvs mailing list