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:39:04 +0300
commit73169628a1853fcc5e93c6d0c70c6668452b8a61 (patch)
treedcd3eda039f7b478e7b96a7d54382a8f42c84e5a /source/blender/editors/space_api
parentb6aa8daf4983ffadf8401d3e931890a20e1d362e (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/space_api')
-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();