Fix T101501: Masks are not visible in Image Editor

Need to initialize the mask drawing overlays when the new space
is created. Otherwise the new space is configured in a way that
the splines are not visible and overlay opacity is 0.

This change fixes the new masking files created. The currently
saved ones need a manual tweak.
This commit is contained in:
Sergey Sharybin 2022-10-13 12:24:47 +02:00
parent f95071028c
commit cbe1c1474b
Notes: blender-bot 2023-02-14 03:29:37 +01:00
Referenced by issue #100749, Blender LTS: Maintenance Task 3.3
Referenced by issue #101805, Blender (Linux) does not use its icon anymore in GNOME 43, since Wayland went public
Referenced by issue #101501, Drawing Masks in Image Editor gone?
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* \ingroup spimage
*/
#include "DNA_defaults.h"
#include "DNA_gpencil_types.h"
#include "DNA_image_types.h"
#include "DNA_mask_types.h"
@ -117,6 +118,8 @@ static SpaceLink *image_create(const ScrArea *UNUSED(area), const Scene *UNUSED(
simage->custom_grid_subdiv[0] = 10;
simage->custom_grid_subdiv[1] = 10;
simage->mask_info = *DNA_struct_default_get(MaskSpaceInfo);
/* header */
region = MEM_callocN(sizeof(ARegion), "header for image");