[Bf-blender-cvs] [61e0e936441] master: Industry Compat keymap: Fix and remove keymap conflict

William Reynish noreply at git.blender.org
Wed Dec 11 15:59:04 CET 2019


Commit: 61e0e936441828c148b701c9a942d2ab6d9fe3a9
Author: William Reynish
Date:   Wed Dec 11 23:58:55 2019 +0900
Branches: master
https://developer.blender.org/rB61e0e936441828c148b701c9a942d2ab6d9fe3a9

Industry Compat keymap: Fix and remove keymap conflict

Scale Cage was using the same shortcut as Insert Scale Keyframe (Shift-R)
This isn't neccessary anyway since you can use the same key to cycle the tools.

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

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 d7ba10495f4..d03a018e4e4 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -133,7 +133,6 @@ def _template_items_basic_tools(*, connected=False):
         op_tool_cycle("builtin.rotate", {"type": 'E', "value": 'PRESS'}),
         op_tool_cycle("builtin.scale", {"type": 'R', "value": 'PRESS'}),
         op_tool_cycle("builtin.transform", {"type": 'T', "value": 'PRESS'}),
-        op_tool_cycle("builtin.scale_cage", {"type": 'R', "value": 'PRESS', "shift": True}),
         op_tool_cycle("builtin.annotate", {"type": 'D', "value": 'PRESS'}),
         op_tool_cycle("builtin.measure", {"type": 'M', "value": 'PRESS'}),
         op_tool_cycle("builtin.cursor", {"type": 'C', "value": 'PRESS'}),
@@ -2631,7 +2630,6 @@ def km_pose(params):
         op_tool_cycle("builtin.move", {"type": 'W', "value": 'PRESS'}),
         op_tool_cycle("builtin.rotate", {"type": 'E', "value": 'PRESS'}),
         op_tool_cycle("builtin.scale", {"type": 'R', "value": 'PRESS'}),
-        op_tool_cycle("builtin.scale_cage", {"type": 'R', "value": 'PRESS', "shift": True}),
         op_tool_cycle("builtin.transform", {"type": 'T', "value": 'PRESS'}),
         op_tool_cycle("builtin.measure", {"type": 'M', "value": 'PRESS'}),
     ])
@@ -3256,7 +3254,6 @@ def km_lattice(params):
         op_tool_cycle("builtin.move", {"type": 'W', "value": 'PRESS'}),
         op_tool_cycle("builtin.rotate", {"type": 'E', "value": 'PRESS'}),
         op_tool_cycle("builtin.scale", {"type": 'R', "value": 'PRESS'}),
-        op_tool_cycle("builtin.scale_cage", {"type": 'R', "value": 'PRESS', "shift": True}),
         op_tool_cycle("builtin.transform", {"type": 'T', "value": 'PRESS'}),
         op_tool_cycle("builtin.measure", {"type": 'M', "value": 'PRESS'}),
     ])



More information about the Bf-blender-cvs mailing list