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 <campbell@blender.org>2022-03-24 13:37:51 +0300
committerCampbell Barton <campbell@blender.org>2022-03-24 13:48:22 +0300
commit24c30e001f6ec80215a8eaa3341f260168dfdca8 (patch)
treed56bde69de0c836a9fc8aa672779ade33520b665 /source/blender/makesdna
parent643da14a4efd6a0eeb9ed21dd68643fdc7a6359e (diff)
3D View: preference to disable selection cycling on first click
Object mode selection does a kind of cycling that excludes the active selected object. This is separate from regular selection cycling which is enabled when clicking multiple times without moving the cursor. This has the down-side that clicking on an object to drag it always selects the object behind it (in the case of overlapping objects). Since object mode selection is fundamental functionality, this is exposed as an experimental preference for user feedback & testing. See T96752 for details.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 4dee89db274..5fb8d0328f1 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -650,8 +650,9 @@ typedef struct UserDef_Experimental {
char use_extended_asset_browser;
char use_override_templates;
char use_named_attribute_nodes;
+ char use_select_nearest_on_first_click;
char enable_eevee_next;
- char _pad[1];
+ // char _pad[0];
/** `makesdna` does not allow empty structs. */
} UserDef_Experimental;