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-04-14 10:15:07 +0300
committerCampbell Barton <campbell@blender.org>2022-04-14 10:20:36 +0300
commitb1908f2e0b23988627772f6a6d968d8351dca6d7 (patch)
tree89a5bcbd2b2ec95b809e5f77c4acfe59f2829f00 /source/blender/makesdna/DNA_userdef_types.h
parent678b76d99ae5f918777a5706490b680d709d081d (diff)
View 3D: disable object mode selection cycling on first-click
Unlike regular selection cycling that is activated when clicking again in the same location, object mode would cycle to another object if the object that was selected happened to already be active. This made it impossible to click-drag to tweak the active object if there were other objects behind it as those would be activated first. Resolves T96752.
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 0f6c32e4ddf..619f4c05875 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -649,9 +649,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 use_sculpt_texture_paint;
+ char _pad0[1];
/** `makesdna` does not allow empty structs. */
} UserDef_Experimental;