From 75ac92ed85e6b04678ecae0029941efca4a52fa9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 20 Jun 2023 11:45:45 +1000 Subject: [PATCH] Fix #109061: UI list generic template fails with error --- scripts/templates_py/ui_list_generic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/templates_py/ui_list_generic.py b/scripts/templates_py/ui_list_generic.py index d33075ddd65..1827cae53d6 100644 --- a/scripts/templates_py/ui_list_generic.py +++ b/scripts/templates_py/ui_list_generic.py @@ -18,8 +18,8 @@ class MyPanel(bpy.types.Panel): draw_ui_list( layout, context, - list_context_path="scene.my_list", - active_index_context_path="scene.my_list_active_index" + list_path="scene.my_list", + active_index_path="scene.my_list_active_index", )