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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-08-26 04:37:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-26 04:37:22 +0300
commite5a5a251d2dcb1915c3dd37bc22d10868c04a2a6 (patch)
tree6c46f1e85997733968d2cf31d9e57fc66dc9f61b /source
parent70fbdcb6bf5107101e5cbde3b54138f0cc8a2668 (diff)
Fix T90915: outliner select behaves as if Ctrl is held
Error in 452cc0193255c9e80ca4f163a2d524ed6bb17ef1
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index 898e66e7a39..1feecc04ead 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -1682,7 +1682,7 @@ void OUTLINER_OT_item_activate(wmOperatorType *ot)
ot->flag |= OPTYPE_REGISTER | OPTYPE_UNDO;
PropertyRNA *prop;
- prop = RNA_def_boolean(ot->srna, "extend", true, "Extend", "Extend selection for activation");
+ prop = RNA_def_boolean(ot->srna, "extend", false, "Extend", "Extend selection for activation");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
prop = RNA_def_boolean(
ot->srna, "extend_range", false, "Extend Range", "Select a range from active element");