Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-12-05 09:30:43 +0300
committerWilliam Reynish <billrey@me.com>2019-12-05 09:30:43 +0300
commit722b8e4692829b11b9ae150cb9daccd52d25a2e7 (patch)
tree224479b91241c134ad7b53b6346a077849b08986 /release/scripts/presets
parentde7622b4b6c90675faba77694bde53517cd29150 (diff)
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.
Diffstat (limited to 'release/scripts/presets')
-rw-r--r--release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py4
1 files changed, 3 insertions, 1 deletions
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),