[Bf-blender-cvs] [c175ff19d8c] master: UI: Fix Wrong UI Label after recent modifier changes

Aaron Carlisle noreply at git.blender.org
Mon Jun 8 05:37:25 CEST 2020


Commit: c175ff19d8c0deeb358cf6d67165416330a529d2
Author: Aaron Carlisle
Date:   Sun Jun 7 23:37:17 2020 -0400
Branches: master
https://developer.blender.org/rBc175ff19d8c0deeb358cf6d67165416330a529d2

UI: Fix Wrong UI Label after recent modifier changes

===================================================================

M	source/blender/modifiers/intern/MOD_solidify.c

===================================================================

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);
   }



More information about the Bf-blender-cvs mailing list