Fix T84684: Undo operators not working

Mistake in 2771dfd563. 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.
This commit is contained in:
Julian Eisel 2021-01-13 23:33:23 +01:00
parent b6aa8daf49
commit 73169628a1
Notes: blender-bot 2023-10-13 01:54:23 +02:00
Referenced by issue #84690, Undo doesn't work on UVmap deletion & only 5-6 UVmaps on same object possible
Referenced by issue #84684, Undo doesn't work after reverting of ID template changes
1 changed files with 2 additions and 0 deletions

View File

@ -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();