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:
authorTon Roosendaal <ton@blender.org>2003-10-29 04:10:10 +0300
committerTon Roosendaal <ton@blender.org>2003-10-29 04:10:10 +0300
commitf3a809b09f729ef4bad73030e70827b52afda845 (patch)
tree0b28df6bcd1858e3922ca34697f7b373cd8e03c0 /source/blender/src/editview.c
parent5ea904facacea7adf654c2548fa127f746ea105b (diff)
- made option for auto open toolbox on left/mouse hold.
standard starts with 0.5 sec. Turn the threshold value up to effectively disable it when you dislike it. But give it a try! - added 'Home' after splitting window for buttonswindow
Diffstat (limited to 'source/blender/src/editview.c')
-rw-r--r--source/blender/src/editview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index e16dc7d9cfd..30271e300cb 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -252,7 +252,7 @@ int gesture(void)
/* not drawing yet... check for toolbox */
PIL_sleep_ms(10);
timer++;
- if(timer>=10*U.menuthreshold1) {
+ if(timer>=10*U.tb_leftmouse) {
toolbox_n();
return 1;
}