Fix: Remove animatable flag from execution_time property

This property is not user editable and is calculated internally. When presented as a property in the UI, it shows the animatable button which is useless. This just removes the flag.

Pull Request: https://projects.blender.org/blender/blender/pulls/146907
This commit is contained in:
Colin Basnett
2025-09-28 23:02:58 +02:00
parent 96ce5ee0c0
commit a0a43c0805

View File

@@ -11288,6 +11288,7 @@ void RNA_def_modifier(BlenderRNA *brna)
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "execution_time", PROP_FLOAT, PROP_TIME_ABSOLUTE);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(
prop,