Fix #131017: Improve Subframe Tooltip

Change Timeline "Show Subframes" property description from "Show
current scene subframe and allow set it using interface tools" to
"Display and allow setting fractional frame values for the current
frame".

Pull Request: https://projects.blender.org/blender/blender/pulls/131115
This commit is contained in:
Harley Acheson
2024-12-02 19:18:28 +01:00
committed by Harley Acheson
parent d04ac76ed8
commit bc430c4e67

View File

@@ -8641,7 +8641,9 @@ void RNA_def_scene(BlenderRNA *brna)
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_boolean_sdna(prop, nullptr, "r.flag", SCER_SHOW_SUBFRAME);
RNA_def_property_ui_text(
prop, "Show Subframe", "Show current scene subframe and allow set it using interface tools");
prop,
"Show Subframe",
"Display and allow setting fractional frame values for the current frame");
RNA_def_property_update(prop, NC_SCENE | ND_FRAME, "rna_Scene_show_subframe_update");
/* Timeline / Time Navigation settings */