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>2022-10-04 20:36:06 +0300
committerHans Goudey <h.goudey@me.com>2022-10-04 20:36:06 +0300
commit9f8b0b83a9c5f7a2e94e2ed19125db0815505dda (patch)
tree0ee2468ed93d68ab95092f4be75f30f3f1f35eed /source/blender/nodes/geometry
parent31e89ee5b9d466fd31680384613783e99f1c912f (diff)
UI: Avoid unnecessary label in set curve normal node
"Mode" is obvious and isn't worth cutting off the text.
Diffstat (limited to 'source/blender/nodes/geometry')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_set_curve_normal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_set_curve_normal.cc b/source/blender/nodes/geometry/nodes/node_geo_set_curve_normal.cc
index a61f853c6ed..e2169966f5a 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_set_curve_normal.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_set_curve_normal.cc
@@ -18,7 +18,7 @@ static void node_declare(NodeDeclarationBuilder &b)
static void node_layout(uiLayout *layout, bContext * /*C*/, PointerRNA *ptr)
{
- uiItemR(layout, ptr, "mode", 0, nullptr, ICON_NONE);
+ uiItemR(layout, ptr, "mode", 0, "", ICON_NONE);
}
static void node_init(bNodeTree * /*tree*/, bNode *node)