From 0b5cf91b8908ad0b3a7ae401bcf74975acb47ded Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 29 Apr 2022 09:43:03 +1000 Subject: Cleanup: use 'use_' prefix for RNA boolean --- source/blender/makesrna/intern/rna_space.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna') diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 0ba8658568c..032ef86c172 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -5739,7 +5739,7 @@ static void rna_def_space_sequencer(BlenderRNA *brna) prop, "Use Proxies", "Use optimized files for faster scrubbing when available"); RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, "rna_SequenceEditor_update_cache"); - prop = RNA_def_property(srna, "clamp_view", PROP_BOOLEAN, PROP_NONE); + prop = RNA_def_property(srna, "use_clamp_view", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_CLAMP_VIEW); RNA_def_property_boolean_funcs( prop, "rna_SequenceEditor_clamp_view_get", "rna_SequenceEditor_clamp_view_set"); -- cgit v1.2.3