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 <ideasman42@gmail.com>2021-01-22 03:33:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-22 04:38:55 +0300
commit7b528b2a3ad33b3ad7328213669d8179528e254b (patch)
tree8fcf33d4ff47f7d5519b8b7a769c5c04e05bccb2 /source/blender/editors/space_outliner/outliner_select.c
parent99e5d5ba21a44a9caa4f10b86c5065b916a096b4 (diff)
Fix T84920: Crash undoing object activation in the outliner
Regression from d8992192e5512380f57433df113f3e3f8b22f7cb The original code relied on having a separate edit-object pointer than the active object. Use a utility function to avoid code duplication as there are other areas that have similar functionality.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_select.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index f8812ff5970..600047c4b11 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -398,14 +398,10 @@ static eOLDrawState tree_element_set_active_object(bContext *C,
}
if (set != OL_SETSEL_NONE) {
- ED_object_base_activate(C, base); /* adds notifier */
+ 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);
}
-
- if (ob != OBEDIT_FROM_VIEW_LAYER(view_layer)) {
- ED_object_editmode_exit(C, EM_FREEDATA);
- }
}
return OL_DRAWSEL_NORMAL;
}