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:
authorHans Goudey <h.goudey@me.com>2020-06-29 21:41:46 +0300
committerHans Goudey <h.goudey@me.com>2020-06-29 21:41:46 +0300
commit4f8a881715ca71599c1f4ee82b76cbce0a02b4d9 (patch)
treebb554f97e25673fabbb0d84038d698d8e7cc39ec /source/blender
parent5d31ef08205768f6e591e838d0a42520f6c62efe (diff)
Fix T78444: Duplicate "From Radius" in Cast Modifier UI
This button was meant to be "Use Transform"
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/modifiers/intern/MOD_cast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_cast.c b/source/blender/modifiers/intern/MOD_cast.c
index 9f588a4d345..cc9def73e12 100644
--- a/source/blender/modifiers/intern/MOD_cast.c
+++ b/source/blender/modifiers/intern/MOD_cast.c
@@ -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);