Keymaps: keep Select Box as default tool.

This commit is contained in:
Brecht Van Lommel
2018-11-26 13:51:30 +01:00
parent 68c7553dd9
commit e7662ea257
2 changed files with 3 additions and 3 deletions

View File

@@ -784,7 +784,7 @@ def km_uv_editor(params):
# Quick switch to select tool, since left select can't easily
# select with any tool active.
items.extend([
op_tool_cycle("Select", {"type": 'W', "value": 'PRESS'}),
op_tool_cycle("Select Box", {"type": 'W', "value": 'PRESS'}),
])
return keymap
@@ -1133,7 +1133,7 @@ def km_view3d(params):
# Quick switch to select tool, since left select can't easily
# select with any tool active.
items.extend([
op_tool_cycle("Select", {"type": 'W', "value": 'PRESS'}),
op_tool_cycle("Select Box", {"type": 'W', "value": 'PRESS'}),
])
return keymap

View File

@@ -814,7 +814,7 @@ static const char *toolsystem_default_tool(const bToolKey *tkey)
break;
}
return "Select";
return "Select Box";
}
/**