From bc430c4e670fc5743ae54beffab4ddfa095f263b Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Mon, 2 Dec 2024 19:18:28 +0100 Subject: [PATCH] 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 --- source/blender/makesrna/intern/rna_scene.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_scene.cc b/source/blender/makesrna/intern/rna_scene.cc index 7490add2641..13fb12f2b7a 100644 --- a/source/blender/makesrna/intern/rna_scene.cc +++ b/source/blender/makesrna/intern/rna_scene.cc @@ -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 */