Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-06-13 15:41:21 +0300
committerWilliam Reynish <billrey@me.com>2019-06-13 15:41:21 +0300
commit1e8b007d50f76362bb4067800bc1c12c9f87b1c6 (patch)
treed4b69a19fede4072de3c0da54194f08e957e0393 /source/blender/windowmanager/intern/wm_toolsystem.c
parent1f1b638b4030bf2d3cef2142ed07ed5929df1444 (diff)
Set Node Editor to use Box Select tool by default
This makes Shift and Ctrl work properly to extend and subtract selections. This also moves Cut Links to Ctrl-RMB, which doesn't conflict with the selection tool.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_toolsystem.c')
-rw-r--r--source/blender/windowmanager/intern/wm_toolsystem.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_toolsystem.c b/source/blender/windowmanager/intern/wm_toolsystem.c
index 0c916896560..fa69d750665 100644
--- a/source/blender/windowmanager/intern/wm_toolsystem.c
+++ b/source/blender/windowmanager/intern/wm_toolsystem.c
@@ -731,8 +731,7 @@ static const char *toolsystem_default_tool(const bToolKey *tkey)
}
break;
case SPACE_NODE: {
- /* 'Select Box' interferes with cut-links which is handy. */
- return "builtin.select";
+ return "builtin.select_box";
}
}