UI: increase precision for fps-base value

The default precision displayed 1.001 as 1.00,
leading to confusing final FPS values.

Fixes T70827
This commit is contained in:
Campbell Barton 2019-10-15 18:17:47 +11:00
parent 0500dcd711
commit 7fb12536b7
Notes: blender-bot 2023-02-14 00:29:17 +01:00
Referenced by issue #70827, Custom Frame Rate setting displays decimals
1 changed files with 2 additions and 1 deletions

View File

@ -5683,7 +5683,8 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "frs_sec_base");
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_range(prop, 1e-5f, 1e6f);
RNA_def_property_ui_range(prop, 0.1f, 120.0f, 2, -1);
/* Important to show at least 3 decimal points because multiple presets set this to 1.001. */
RNA_def_property_ui_range(prop, 0.1f, 120.0f, 2, 3);
RNA_def_property_ui_text(prop, "FPS Base", "Framerate base");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, "rna_Scene_fps_update");