Fix: script_validate_keymap test failed

The issue was that `("value", True)` was passed in
when this is not supported. It didn't break while running
but it did break the test.
This commit is contained in:
Christoph Lendenfeld 2023-12-01 15:32:27 +01:00
parent 4c79b87d9a
commit 24ae0e3666

@ -5261,7 +5261,7 @@ def km_weight_paint(params):
("wm.context_toggle", {"type": 'TWO', "value": 'PRESS'},
{"properties": [("data_path", 'weight_paint_object.data.use_paint_mask_vertex')]}),
("wm.context_toggle", {"type": 'THREE', "value": 'PRESS'},
{"properties": [("data_path", 'weight_paint_object.data.use_paint_bone_selection'), ("value", True)]}),
{"properties": [("data_path", 'weight_paint_object.data.use_paint_bone_selection')]}),
("wm.context_toggle", {"type": 'S', "value": 'PRESS', "shift": True},
{"properties": [("data_path", 'tool_settings.weight_paint.brush.use_smooth_stroke')]}),
op_menu_pie("VIEW3D_MT_wpaint_vgroup_lock_pie", {"type": 'K', "value": 'PRESS'}),