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 /release
parent1e23304fbc402b15d59a16aed400770aecd6a0dd (diff)
Cleanup: use 'use_' prefix for RNA boolean
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 8289b7b8556..7c7bb456473 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -439,7 +439,7 @@ class SEQUENCER_MT_view(Menu):
layout.operator_context = 'INVOKE_REGION_WIN'
layout.operator("sequencer.view_all")
layout.operator("view2d.zoom_border", text="Zoom")
- layout.prop(st, "clamp_view")
+ layout.prop(st, "use_clamp_view")
if is_preview:
layout.operator_context = 'INVOKE_REGION_PREVIEW'