UI: Avoid unnecessary label in set curve normal node

"Mode" is obvious and isn't worth cutting off the text.
This commit is contained in:
Hans Goudey 2022-10-04 12:36:06 -05:00
parent 31e89ee5b9
commit 9f8b0b83a9
1 changed files with 1 additions and 1 deletions

View File

@ -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)