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:
authorJulian Eisel <julian@blender.org>2021-01-14 01:33:23 +0300
committerJulian Eisel <julian@blender.org>2021-01-14 01:41:14 +0300
commit01b9dfeab49783f040145824eaf2029c494a4a8a (patch)
tree48cb7258986758a28a6254a7e4d1c590c93dc9ef /source/blender/editors
parentcf9709fd1eee72dff0716541a57df4ff8ec9a4b9 (diff)
Fix T84684: Undo operators not working
Mistake in 2771dfd5632a. The commit left the new editors operator registration in `ed_util_ops.c`, but removed the function call to it. In other words, the ED-utils operators were not registered.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_api/spacetypes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c
index 0fe94ec382c..10fa2c19919 100644
--- a/source/blender/editors/space_api/spacetypes.c
+++ b/source/blender/editors/space_api/spacetypes.c
@@ -65,6 +65,7 @@
#include "ED_space_api.h"
#include "ED_transform.h"
#include "ED_userpref.h"
+#include "ED_util.h"
#include "ED_uvedit.h"
#include "io_ops.h"
@@ -124,6 +125,7 @@ void ED_spacetypes_init(void)
ED_operatortypes_render();
ED_operatortypes_mask();
ED_operatortypes_io();
+ ED_operatortypes_edutils();
ED_operatortypes_view2d();
ED_operatortypes_ui();