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:
authorDalai Felinto <dfelinto@gmail.com>2019-02-12 19:27:30 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-02-12 19:27:30 +0300
commit09b40aa03973c3fda6a1f279aab098b6319a54f0 (patch)
tree3fd9576492797005382a2a0659381a25332f445a /source/blender/makesrna
parentf16763a01dfb0b9fe534d468740f49e147ea12a6 (diff)
Fix "typo" in show_object_viewport* RNA_def_property_update
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index c24ca3b3bb4..e9920f49dda 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -3308,7 +3308,7 @@ static void rna_def_space_view3d(BlenderRNA *brna)
RNA_def_property_boolean_negative_sdna(
prop, NULL, view_mask_member[mask_index], info[type_index].type_mask);
RNA_def_property_ui_text(prop, info[type_index].name, "");
- RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL);
+ RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
}
}