[Bf-blender-cvs] [82fc8786ea1] master: Fix T99343: Missing RNA_def_property_update for show overlays in UV editor

Siddhartha Jejurkar noreply at git.blender.org
Wed Jul 6 17:45:27 CEST 2022


Commit: 82fc8786ea182f0cdc9c2eedea53cbf3a3656e4d
Author: Siddhartha Jejurkar
Date:   Mon Jul 4 11:49:07 2022 +0530
Branches: master
https://developer.blender.org/rB82fc8786ea182f0cdc9c2eedea53cbf3a3656e4d

Fix T99343: Missing RNA_def_property_update for show overlays in UV editor

Reviewed By: jbakker

Maniphest Tasks: T99343

Differential Revision: https://developer.blender.org/D15354

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

M	source/blender/makesrna/intern/rna_space.c

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 745c7137cb2..969d1f2075e 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -5298,6 +5298,7 @@ static void rna_def_space_image_overlay(BlenderRNA *brna)
   prop = RNA_def_property(srna, "show_overlays", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "overlay.flag", SI_OVERLAY_SHOW_OVERLAYS);
   RNA_def_property_ui_text(prop, "Show Overlays", "Display overlays like UV Maps and Metadata");
+  RNA_def_property_update(prop, NC_SPACE | ND_SPACE_IMAGE, NULL);
 
   prop = RNA_def_property(srna, "show_grid_background", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "overlay.flag", SI_OVERLAY_SHOW_GRID_BACKGROUND);



More information about the Bf-blender-cvs mailing list