Fix #89479: Unable to select hierarchies of multiple objects from outliner #104737

Merged
Pratik Borhade merged 11 commits from PratikPB2123/blender:T89479-select-multi-hierarchies into main 2023-08-17 13:23:52 +02:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 623ac68cf0 - Show all commits

View File

@ -385,7 +385,9 @@ static void tree_element_object_activate(bContext *C,
}
if (set != OL_SETSEL_NONE) {
ED_object_base_activate_with_mode_exit_if_needed(C, base); /* adds notifier */
if (!recursive) {
ED_object_base_activate_with_mode_exit_if_needed(C, base); /* adds notifier */
}
DEG_id_tag_update(&scene->id, ID_RECALC_SELECT);
WM_event_add_notifier(C, NC_SCENE | ND_OB_SELECT, scene);
}