Grease Pencil: Fix layout for influence curve widget.

This should use a column layout of full width.
This commit is contained in:
Lukas Tönne
2024-01-19 11:22:17 +01:00
parent ef741bc6ff
commit 2eb6bc5ca3

View File

@@ -172,7 +172,7 @@ void draw_custom_curve_settings(const bContext * /*C*/, uiLayout *layout, Pointe
uiLayoutSetPropDecorate(row, false);
uiItemR(row, ptr, "use_custom_curve", UI_ITEM_NONE, "Custom Curve", ICON_NONE);
if (use_custom_curve) {
uiTemplateCurveMapping(row, ptr, "custom_curve", 0, false, false, false, false);
uiTemplateCurveMapping(layout, ptr, "custom_curve", 0, false, false, false, false);
}
}