Grease Pencil: Tool settings layout adjustments #128491

Merged
Pablo Vazquez merged 6 commits from pablovazquez/blender:ui-gpencil-tool-settings into blender-v4.3-release 2024-10-03 00:29:05 +02:00
Showing only changes of commit 857a8f8ee1 - Show all commits

View File

@ -2329,10 +2329,10 @@ class _defs_grease_pencil_paint:
def draw_settings(_context, layout, tool): def draw_settings(_context, layout, tool):
props = tool.operator_properties("grease_pencil.interpolate") props = tool.operator_properties("grease_pencil.interpolate")
layout.prop(props, "layers") layout.prop(props, "layers")
layout.prop(props, "exclude_breakdowns")
layout.prop(props, "flip") layout.prop(props, "flip")
layout.prop(props, "smooth_factor") layout.prop(props, "smooth_factor")
layout.prop(props, "smooth_steps") layout.prop(props, "smooth_steps")
layout.prop(props, "exclude_breakdowns")
return dict( return dict(
idname="builtin.interpolate", idname="builtin.interpolate",