Fix T90915: outliner select behaves as if Ctrl is held

Error in 452cc01932
This commit is contained in:
Campbell Barton 2021-08-26 11:37:22 +10:00
parent 70fbdcb6bf
commit e5a5a251d2
Notes: blender-bot 2023-02-14 05:59:31 +01:00
Referenced by issue #90958, Left click selection through outliner unexpectedly adds objects to selection
Referenced by issue #90915, Outliner behaves as if CTRL was pressed all the time
1 changed files with 1 additions and 1 deletions

View File

@ -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");