From 79b7c46eecdf87dafd5ccb9ceafb174be7dd233e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 12 May 2021 22:19:01 +1000 Subject: [PATCH] Fix: IC keymap V-key view pie doesn't work in Weight Paint mode Remove the V key for switching to vertex mode in Weight Paint mode as it caused a key-conflict. Ref D11192 --- .../presets/keyconfig/keymap_data/industry_compatible_data.py | 2 -- 1 file changed, 2 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 91f153a0f42..2880d56a005 100644 --- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py +++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py @@ -3334,8 +3334,6 @@ def km_weight_paint(params): *_template_paint_radial_control("weight_paint"), ("wm.context_toggle", {"type": 'M', "value": 'PRESS'}, {"properties": [("data_path", 'weight_paint_object.data.use_paint_mask')]}), - ("wm.context_toggle", {"type": 'V', "value": 'PRESS'}, - {"properties": [("data_path", 'weight_paint_object.data.use_paint_mask_vertex')]}), ("wm.context_toggle", {"type": 'S', "value": 'PRESS', "shift": True}, {"properties": [("data_path", 'tool_settings.weight_paint.brush.use_smooth_stroke')]}), *_template_items_context_panel("VIEW3D_PT_paint_weight_context_menu", {"type": 'RIGHTMOUSE', "value": 'PRESS'}),