[Bf-blender-cvs] [722b8e46928] master: Industry Compat keymap: Use consistent shortcuts for sculpt mode masking

William Reynish noreply at git.blender.org
Thu Dec 5 07:30:51 CET 2019


Commit: 722b8e4692829b11b9ae150cb9daccd52d25a2e7
Author: William Reynish
Date:   Thu Dec 5 15:30:43 2019 +0900
Branches: master
https://developer.blender.org/rB722b8e4692829b11b9ae150cb9daccd52d25a2e7

Industry Compat keymap: Use consistent shortcuts for sculpt mode masking

Use Ctrl-A and Ctrl-Shift-A for 'selecting' and 'deselecting' via the masking operators.

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

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 dfe65f64cd0..6c2d89233ce 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -3006,8 +3006,10 @@ def km_sculpt(params):
         ("object.subdivision_set", {"type": 'PAGE_DOWN', "value": 'PRESS'},
          {"properties": [("level", -1), ("relative", True)]}),
         # Mask
-        ("paint.mask_flood_fill", {"type": 'M', "value": 'PRESS', "alt": True},
+        ("paint.mask_flood_fill", {"type": 'A', "value": 'PRESS', "ctrl": True},
          {"properties": [("mode", 'VALUE'), ("value", 0.0)]}),
+        ("paint.mask_flood_fill", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True},
+         {"properties": [("mode", 'VALUE'), ("value", 1.0)]}),
         ("paint.mask_flood_fill", {"type": 'I', "value": 'PRESS', "ctrl": True},
          {"properties": [("mode", 'INVERT')]}),
         ("paint.mask_lasso_gesture", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True, "ctrl": True}, None),



More information about the Bf-blender-cvs mailing list