Fix grease pencil sculpt circle keymap

Missed when updating circle select operators.
This commit is contained in:
Campbell Barton 2019-03-07 00:35:53 +11:00
parent 38673621a4
commit 872412284c
1 changed files with 1 additions and 5 deletions

View File

@ -5951,11 +5951,7 @@ def km_3d_view_tool_sculpt_gpencil_select_circle(params):
return (
"3D View Tool: Sculpt Gpencil, Select Circle",
{"space_type": 'VIEW_3D', "region_type": 'WINDOW'},
{"items": [
("gpencil.select_circle", {"type": params.tool_tweak, "value": 'ANY'}, None),
("gpencil.select_circle", {"type": params.tool_mouse, "value": 'PRESS', "ctrl": True},
{"properties": [("deselect", True)]}),
]},
{"items": _template_items_tool_select_actions_circle("gpencil.select_circle", type=params.tool_mouse, value='PRESS')},
)