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:
authorFalk David <falkdavid@gmx.de>2021-02-14 22:52:23 +0300
committerFalk David <falkdavid@gmx.de>2021-02-14 22:52:23 +0300
commit80a8df72be99b250ca5c0fc305b586377f8abf53 (patch)
treec57dfb2668d3967d3547984749ff685906997592 /source/blender/editors
parent2f6d62bf88621c9a33aa01fae6548d89d0eaccd9 (diff)
parent2d3b29de4fc72d5e293deccd2317c001ede703e3 (diff)
Merge branch 'blender-v2.92-release'
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/editmesh_inset.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/source/blender/editors/mesh/editmesh_inset.c b/source/blender/editors/mesh/editmesh_inset.c
index 8427458d9cc..9000a942e50 100644
--- a/source/blender/editors/mesh/editmesh_inset.c
+++ b/source/blender/editors/mesh/editmesh_inset.c
@@ -97,9 +97,20 @@ static void edbm_inset_update_header(wmOperator *op, bContext *C)
outputNumInput(&opdata->num_input, flts_str, &sce->unit);
}
else {
- BLI_snprintf(flts_str, NUM_STR_REP_LEN, "%f", RNA_float_get(op->ptr, "thickness"));
- BLI_snprintf(
- flts_str + NUM_STR_REP_LEN, NUM_STR_REP_LEN, "%f", RNA_float_get(op->ptr, "depth"));
+ BKE_unit_value_as_string(flts_str,
+ NUM_STR_REP_LEN,
+ RNA_float_get(op->ptr, "thickness"),
+ 4,
+ B_UNIT_LENGTH,
+ &sce->unit,
+ true);
+ BKE_unit_value_as_string(flts_str + NUM_STR_REP_LEN,
+ NUM_STR_REP_LEN,
+ RNA_float_get(op->ptr, "depth"),
+ 4,
+ B_UNIT_LENGTH,
+ &sce->unit,
+ true);
}
BLI_snprintf(msg,
sizeof(msg),