From 1d9df1d90a3bdcf38800c429991f74630f770cc7 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Fri, 15 May 2026 07:28:29 -0500 Subject: [PATCH] Fix #8056 - Dimensions with `CustomUnit" = "Inches - Fractional"` should not show `0`. --- src/bonsai/bonsai/bim/module/drawing/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/drawing/helper.py b/src/bonsai/bonsai/bim/module/drawing/helper.py index d4895410cb..ef72207914 100644 --- a/src/bonsai/bonsai/bim/module/drawing/helper.py +++ b/src/bonsai/bonsai/bim/module/drawing/helper.py @@ -313,7 +313,7 @@ def format_distance( if not feet and not add_inches: tx_dist += str(feet) + "'" - if not feet and add_inches: + if not feet and add_inches and unit_length != "INCHES": if value < 0: tx_dist += "-0' - " else: