Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gavrilov <angavrilov@gmail.com>2021-12-26 18:09:19 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2022-01-18 16:24:54 +0300
commit0d7b3ed39c77e1cdd43815a65993afe179691672 (patch)
tree6440d7ec2e07800185898e0c9703e8f0901d3ce9 /source/blender/makesrna/intern/rna_rna.c
parent695222838699921865a1f5685c420c9155f27ca7 (diff)
RNA: display exact integer values without fraction if step is integer.
Display exact integer values of a floating point fields without a fraction if the step is also an exact integer. This is intended for cases when the value can technically be fractional, but most commonly is supposed to be integer. This handling is not applied if the field has any unit except frames, because integer values aren't special for quantities like length. The fraction is discarded in the normal display mode and when copying the value to clipboard, but not when editing to remind the user that the field allows fractions. Differential Revision: https://developer.blender.org/D13753
Diffstat (limited to 'source/blender/makesrna/intern/rna_rna.c')
-rw-r--r--source/blender/makesrna/intern/rna_rna.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_rna.c b/source/blender/makesrna/intern/rna_rna.c
index 285f6365ea1..37e7e5e6bed 100644
--- a/source/blender/makesrna/intern/rna_rna.c
+++ b/source/blender/makesrna/intern/rna_rna.c
@@ -3117,7 +3117,11 @@ static void rna_def_number_property(StructRNA *srna, PropertyType type)
prop = RNA_def_property(srna, "precision", PROP_INT, PROP_UNSIGNED);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_int_funcs(prop, "rna_FloatProperty_precision_get", NULL, NULL);
- RNA_def_property_ui_text(prop, "Precision", "Number of digits after the dot used by buttons");
+ RNA_def_property_ui_text(prop,
+ "Precision",
+ "Number of digits after the dot used by buttons. Fraction is "
+ "automatically hidden for exact integer values of fields with unit "
+ "'NONE' or 'TIME' (frame count) and step divisible by 100.");
}
}