From 71af08e1c972024244e48096a3f44da25de2eb95 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 1 Apr 2015 09:48:48 +0200 Subject: Fix T44212: Crash on Group Rename. Nice offset-by-one index error. ;) --- source/blender/editors/space_outliner/outliner_tools.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/space_outliner') diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c index fc6717f47be..af21478150b 100644 --- a/source/blender/editors/space_outliner/outliner_tools.c +++ b/source/blender/editors/space_outliner/outliner_tools.c @@ -946,16 +946,15 @@ static int outliner_group_operation_exec(bContext *C, wmOperator *op) default: BLI_assert(0); } - if (event == 3) { /* instance */ /* works without this except if you try render right after, see: 22027 */ DAG_relations_tag_update(CTX_data_main(C)); } - - ED_undo_push(C, prop_group_op_types[event].name); + + ED_undo_push(C, prop_group_op_types[event - 1].name); WM_event_add_notifier(C, NC_GROUP, NULL); - + return OPERATOR_FINISHED; } -- cgit v1.2.3