Fix property name for node UI

This commit is contained in:
Hans Goudey 2022-12-01 18:11:11 -06:00
parent e9c3e4f14e
commit 0019d6cc8f
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ static void node_declare(NodeDeclarationBuilder &b)
static void node_layout(uiLayout *layout, bContext * /*C*/, PointerRNA *ptr)
{
uiItemR(layout, ptr, "use_cache", 0, IFACE_("Persistent Cache"), ICON_NONE);
uiItemR(layout, ptr, "use_persistent_cache", 0, IFACE_("Persistent Cache"), ICON_NONE);
}
static void node_init(bNodeTree * /*tree*/, bNode *node)