[Bf-blender-cvs] [fbceac97087] master: Cleanup: Outliner: remove warning about no undo of ID deletion.

Bastien Montagne noreply at git.blender.org
Thu Mar 21 11:22:05 CET 2019


Commit: fbceac9708711dc6b020f0c0dd2c1d1e0b659bb5
Author: Bastien Montagne
Date:   Thu Mar 21 11:17:21 2019 +0100
Branches: master
https://developer.blender.org/rBfbceac9708711dc6b020f0c0dd2c1d1e0b659bb5

Cleanup: Outliner: remove warning about no undo of ID deletion.

ID deletion is undoable nowadays...

===================================================================

M	source/blender/editors/space_outliner/outliner_tools.c

===================================================================

diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c
index 24ca497ed5d..19d79965a6f 100644
--- a/source/blender/editors/space_outliner/outliner_tools.c
+++ b/source/blender/editors/space_outliner/outliner_tools.c
@@ -1166,7 +1166,7 @@ static const EnumPropertyItem prop_id_op_types[] = {
 	{OUTLINER_IDOP_STATIC_OVERRIDE, "STATIC_OVERRIDE", 0, "Add Static Override",
 	 "Add a local static override of this data-block"},
 	{OUTLINER_IDOP_SINGLE, "SINGLE", 0, "Make Single User", ""},
-	{OUTLINER_IDOP_DELETE, "DELETE", ICON_X, "Delete", "WARNING: no undo"},
+	{OUTLINER_IDOP_DELETE, "DELETE", ICON_X, "Delete", ""},
 	{OUTLINER_IDOP_REMAP, "REMAP", 0, "Remap Users",
 	 "Make all users of selected data-blocks to use instead current (clicked) one"},
 	{OUTLINER_IDOP_FAKE_ADD, "ADD_FAKE", 0, "Add Fake User",



More information about the Bf-blender-cvs mailing list