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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-06-08 06:37:17 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-06-08 06:37:17 +0300
commitc175ff19d8c0deeb358cf6d67165416330a529d2 (patch)
treef7341e9238c1c7bf59ca1c9d21a491b97b360d88 /source/blender/modifiers
parentf50222ba2e3e4aa461c23b4f0b3f3382a9e0632c (diff)
UI: Fix Wrong UI Label after recent modifier changes
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_solidify.c b/source/blender/modifiers/intern/MOD_solidify.c
index 09351450d3b..1471d088af9 100644
--- a/source/blender/modifiers/intern/MOD_solidify.c
+++ b/source/blender/modifiers/intern/MOD_solidify.c
@@ -114,7 +114,7 @@ static void panel_draw(const bContext *C, Panel *panel)
uiItemR(layout, &ptr, "solidify_mode", 0, NULL, ICON_NONE);
if (solidify_mode == MOD_SOLIDIFY_MODE_NONMANIFOLD) {
- uiItemR(layout, &ptr, "nonmanifold_thickness_mode", 0, IFACE_("Thickness"), ICON_NONE);
+ uiItemR(layout, &ptr, "nonmanifold_thickness_mode", 0, IFACE_("Thickness Mode"), ICON_NONE);
uiItemR(layout, &ptr, "nonmanifold_boundary_mode", 0, IFACE_("Boundary"), ICON_NONE);
}