Fix T78444: Duplicate "From Radius" in Cast Modifier UI

This button was meant to be "Use Transform"
This commit is contained in:
Hans Goudey 2020-06-29 14:41:46 -04:00
parent 5d31ef0820
commit 4f8a881715
Notes: blender-bot 2023-02-14 05:25:44 +01:00
Referenced by issue #78444, Duplication of 'From Radius' tick box in Cast Modifier
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ static void panel_draw(const bContext *C, Panel *panel)
uiItemR(layout, &ptr, "object", 0, NULL, ICON_NONE);
if (!RNA_pointer_is_null(&cast_object_ptr)) {
uiItemR(layout, &ptr, "use_radius_as_size", 0, NULL, ICON_NONE);
uiItemR(layout, &ptr, "use_transform", 0, NULL, ICON_NONE);
}
modifier_panel_end(layout, &ptr);