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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-22 18:05:28 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-25 22:09:43 +0300
commit43325e98da8849029aad111915443654b686fd24 (patch)
treed8c7f518a787aa2648c04cdaf3445fd121b3c353 /source/blender/windowmanager/intern/wm_toolsystem.c
parente840f0a90ba726663f8bd0f4df24baee6e4f7d80 (diff)
Tools: add Select tool, with transform tweak on drag and no click delay.
For users that want the 2.7 LMB keymap behavior, this provides a way of working without tools interfering. For RMB select this operator is quite redundant with the Cursor tool, we may have to find a solution for that. Note that we also might later add transform tweak to the transform tools, when nothing is selected. But this is important for existing users who preferred the existing workflow.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_toolsystem.c')
-rw-r--r--source/blender/windowmanager/intern/wm_toolsystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_toolsystem.c b/source/blender/windowmanager/intern/wm_toolsystem.c
index d1173fccff8..3d1adab6645 100644
--- a/source/blender/windowmanager/intern/wm_toolsystem.c
+++ b/source/blender/windowmanager/intern/wm_toolsystem.c
@@ -814,7 +814,7 @@ static const char *toolsystem_default_tool(const bToolKey *tkey)
break;
}
- return "Select Box";
+ return "Select";
}
/**