diff --git a/src/blenderbim/blenderbim/bim/module/drawing/helper.py b/src/blenderbim/blenderbim/bim/module/drawing/helper.py index 56a7887d27..043c5d7bbd 100644 --- a/src/blenderbim/blenderbim/bim/module/drawing/helper.py +++ b/src/blenderbim/blenderbim/bim/module/drawing/helper.py @@ -180,6 +180,14 @@ def format_distance( frac = 0 inches += 1 + # Check values and compose string + if inches == 12: + if unit_length == "INCHES": + inches = 12 + if unit_length == "FEET": + feet += 1 + inches = 0 + if not isArea: add_inches = bool(inches) or not suppress_zero_inches