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:
authorAntonio Vazquez <blendergit@gmail.com>2021-02-22 18:12:40 +0300
committerAntonio Vazquez <blendergit@gmail.com>2021-02-22 18:12:40 +0300
commitfcac3d04f5507f8fa5440f89be3025f926a2a2fc (patch)
tree546144df1d3fc4080b6646e65f26a9fddbfb38f1 /release
parent046fe55e6390bbcbb946f4d1f07ab1f295cd8fb0 (diff)
Fix T85850: GPencil Interpolate tool panel wrongly aligned
The layout was wrong.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py20
1 files changed, 9 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 75bca09a044..8e99c3af4c3 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -2039,11 +2039,10 @@ class _defs_gpencil_paint:
def interpolate():
def draw_settings(context, layout, tool):
props = tool.operator_properties("gpencil.interpolate")
- row = layout.row()
- row.prop(props, "layers")
- row.prop(props, "flip")
- row.prop(props, "smooth_factor")
- row.prop(props, "smooth_steps")
+ layout.prop(props, "layers")
+ layout.prop(props, "flip")
+ layout.prop(props, "smooth_factor")
+ layout.prop(props, "smooth_steps")
return dict(
idname="builtin.interpolate",
@@ -2222,12 +2221,11 @@ class _defs_gpencil_edit:
def interpolate():
def draw_settings(context, layout, tool):
props = tool.operator_properties("gpencil.interpolate")
- row = layout.row()
- row.prop(props, "layers")
- row.prop(props, "interpolate_selected_only")
- row.prop(props, "flip")
- row.prop(props, "smooth_factor")
- row.prop(props, "smooth_steps")
+ layout.prop(props, "layers")
+ layout.prop(props, "interpolate_selected_only")
+ layout.prop(props, "flip")
+ layout.prop(props, "smooth_factor")
+ layout.prop(props, "smooth_steps")
return dict(
idname="builtin.interpolate",