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-15 15:23:07 +0300
committerHans Goudey <h.goudey@me.com>2020-06-15 15:23:07 +0300
commit73f8dd0f4cb5277df1d161cd1ceee5a630a84cd7 (patch)
tree470f9668191a8f4dda6cd85892c354b44d863eb1 /source/blender/modifiers
parent2797a63a66061096b3fd63918f54648fdd5396c4 (diff)
Fix T77596: UI: Correct "offset even" location in solidify modifier
This only applies in the "simple" solidify mode. Differential Revision: https://developer.blender.org/D7967
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_solidify.c b/source/blender/modifiers/intern/MOD_solidify.c
index 1471d088af9..0792fac41b8 100644
--- a/source/blender/modifiers/intern/MOD_solidify.c
+++ b/source/blender/modifiers/intern/MOD_solidify.c
@@ -124,6 +124,9 @@ static void panel_draw(const bContext *C, Panel *panel)
if (solidify_mode == MOD_SOLIDIFY_MODE_NONMANIFOLD) {
uiItemR(layout, &ptr, "nonmanifold_merge_threshold", 0, NULL, ICON_NONE);
}
+ else {
+ uiItemR(layout, &ptr, "use_even_offset", 0, NULL, ICON_NONE);
+ }
col = uiLayoutColumnWithHeading(layout, false, "Rim");
uiItemR(col, &ptr, "use_rim", 0, IFACE_("Fill"), ICON_NONE);
@@ -162,7 +165,6 @@ static void normals_panel_draw(const bContext *C, Panel *panel)
uiItemR(layout, &ptr, "use_flip_normals", 0, NULL, ICON_NONE);
if (solidify_mode == MOD_SOLIDIFY_MODE_EXTRUDE) {
uiItemR(layout, &ptr, "use_quality_normals", 0, IFACE_("High Quality"), ICON_NONE);
- uiItemR(layout, &ptr, "use_even_offset", 0, NULL, ICON_NONE);
}
}