Industry Compat keymap: LMB-dragging in UV Editor box selects

This makes it possible to drag outside of the Transform gizmo to select
This commit is contained in:
William Reynish 2019-06-25 20:04:09 +02:00
parent 3ea548ef67
commit 79f9b9083a
1 changed files with 1 additions and 1 deletions

View File

@ -514,6 +514,7 @@ def km_uv_editor(params):
{"properties": [("extend", False), ("deselect_all", True)]}),
("uv.select", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True},
{"properties": [("extend", True), ("deselect_all", False)]}),
("uv.select_box", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
("uv.select_loop", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK', "shift": True},
{"properties": [("extend", True)]}),
("uv.select_loop", {"type": 'LEFTMOUSE', "value": 'DOUBLE_CLICK'},
@ -531,7 +532,6 @@ def km_uv_editor(params):
("uv.reveal", {"type": 'H', "value": 'PRESS', "alt": True}, None),
op_menu_pie("IMAGE_MT_uvs_snap_pie", {"type": 'S', "value": 'PRESS', "shift": True}),
op_menu("IMAGE_MT_uvs_select_mode", {"type": 'TAB', "value": 'PRESS', "ctrl": True}),
("transform.translate", {"type": 'EVT_TWEAK_L', "value": 'ANY'}, None),
op_menu("IMAGE_MT_uvs_context_menu", {"type": 'RIGHTMOUSE', "value": 'PRESS'}),
("wm.context_toggle", {"type": 'B', "value": 'PRESS'},
{"properties": [("data_path", 'tool_settings.use_proportional_edit')]}),