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:
authorCampbell Barton <ideasman42@gmail.com>2018-12-20 06:26:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-20 06:26:50 +0300
commit669b23daed8824c55dd546eaff5532a4481e64fa (patch)
treecfeac901373d7a6e8663d4743875270544882418 /source/blender/windowmanager
parentc91778de84d25b6062dbd2ae24027e6431fc7aa7 (diff)
Tool System: default node editor to select tool
With box select you can't cut-links with RMB select.
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_toolsystem.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_toolsystem.c b/source/blender/windowmanager/intern/wm_toolsystem.c
index ef8a57a1255..1d78e64cd0c 100644
--- a/source/blender/windowmanager/intern/wm_toolsystem.c
+++ b/source/blender/windowmanager/intern/wm_toolsystem.c
@@ -809,6 +809,11 @@ static const char *toolsystem_default_tool(const bToolKey *tkey)
return "Draw";
}
break;
+ case SPACE_NODE:
+ {
+ /* 'Select Box' interferes with cut-links which is handy. */
+ return "Select";
+ }
}
return "Select Box";