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:
authorCampbell Barton <campbell@blender.org>2022-04-29 02:43:03 +0300
committerCampbell Barton <campbell@blender.org>2022-04-29 02:43:03 +0300
commit0b5cf91b8908ad0b3a7ae401bcf74975acb47ded (patch)
treed430adc274c48bd3eae3a46781395bd83f51fc6f /source/blender/makesrna/intern/rna_space.c
parent1e23304fbc402b15d59a16aed400770aecd6a0dd (diff)
Cleanup: use 'use_' prefix for RNA boolean
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-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 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");