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 <ideasman42@gmail.com>2020-09-30 08:01:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-30 08:09:00 +0300
commitc0a563ffe814f227411f6b6ce6276a780245ccea (patch)
tree5d884f48da3e9d26ea3cdf0bbb405ce9a0367b6e /release
parente9a663865473db06941063b8ce75d6ff4b3d0884 (diff)
Cleanup: use 'use_' prefix for RNA booleans
Some of the naming was quite misleading.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 1164ff82e3c..75d70abf433 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1150,7 +1150,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
col = layout.column(align=True)
if strip_type == 'SPEED':
col.prop(strip, "multiply_speed")
- col.prop(strip, "frame_interpolation_mode")
+ col.prop(strip, "use_frame_interpolate")
elif strip_type in {'CROSS', 'GAMMA_CROSS', 'WIPE', 'ALPHA_OVER', 'ALPHA_UNDER', 'OVER_DROP'}:
col.prop(strip, "use_default_fade", text="Default fade")
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index a8bb032f565..5d51c3a71a4 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -964,7 +964,7 @@ class VIEW3D_PT_tools_weightpaint_symmetry(Panel, View3DPaintPanel):
col = layout.column()
row = col.row(align=True)
row.prop(context.object.data, 'use_mirror_vertex_group_x')
-
+
class VIEW3D_PT_tools_weightpaint_symmetry_for_topbar(Panel):
@@ -1555,7 +1555,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_post_processing(View3DPanel, Panel):
col1.prop(gp_settings, "simplify_factor")
col1 = col.column(align=True)
- col1.prop(gp_settings, "trim")
+ col1.prop(gp_settings, "use_trim")
class VIEW3D_PT_tools_grease_pencil_brush_random(View3DPanel, Panel):