Anim: change experimental flag label & linked issue on Gitea

Changed the experimental flag label from "Animation: Project Baklava" to
"New Animation System" to be more self-explanatory. Also I changed the
associated item on project.blender.org to #120406, which tracks the work
that is still to be done.
This commit is contained in:
Sybren A. Stüvel 2024-04-08 17:34:11 +02:00
parent 3a551a859a
commit 26c5881cc2
2 changed files with 3 additions and 4 deletions

@ -2680,7 +2680,7 @@ class USERPREF_PT_experimental_prototypes(ExperimentalPanel, Panel):
({"property": "enable_overlay_next"}, ("blender/blender/issues/102179", "#102179")),
({"property": "use_extension_repos"}, ("/blender/blender/issues/117286", "#117286")),
({"property": "use_extension_utils"}, ("/blender/blender/issues/117286", "#117286")),
({"property": "use_animation_baklava"}, ("/blender/blender/pulls/114098", "#114098")),
({"property": "use_animation_baklava"}, ("/blender/blender/issues/120406", "#120406")),
),
)

@ -7221,9 +7221,8 @@ static void rna_def_userdef_experimental(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_animation_baklava", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, nullptr, "use_animation_baklava", 1);
RNA_def_property_ui_text(prop,
"Animation: Project Baklava",
"Enable the new multi-data-block, layered animation system");
RNA_def_property_ui_text(
prop, "New Animation System", "Enable the new multi-data-block, layered animation system");
RNA_def_property_update(prop, 0, "rna_userdef_update");
}