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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-12-07 13:55:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-12-07 13:55:37 +0400
commitd0c327c81c519aed6dcf19329c6e9daf0d87cc01 (patch)
tree1e4da89763a01d2d155e97d5dfefe32876f43da2 /source/blender/makesdna/DNA_userdef_types.h
parent433033c2bf4b72e389d103e00a375d344588ac8e (diff)
Fix #29432: Marquee Select Bug
Moved tweak threshold value to user preferences This threshold might be needed to be tweaked when working with tables, i.e. to prevent tap+slight movement be treated as tweak event.
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 4f6c7e22f5e..851d4b562e6 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -408,7 +408,9 @@ typedef struct UserDef {
struct ColorBand coba_weight; /* from texture.h */
float sculpt_paint_overlay_col[3];
- int pad3;
+
+ short tweak_threshold;
+ short pad3;
char author[80]; /* author name for file formats supporting it */
} UserDef;