From 48b630696ffa4b68c71fc7f63e8b36d1f0c2c5db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Perdig=C3=A3o?= Date: Sat, 31 Aug 2024 13:50:01 -0300 Subject: [PATCH] Fix 3ceeaa7 --- src/bonsai/bonsai/bim/module/drawing/helper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bonsai/bonsai/bim/module/drawing/helper.py b/src/bonsai/bonsai/bim/module/drawing/helper.py index 05cf85b8a5..8f8df7410b 100644 --- a/src/bonsai/bonsai/bim/module/drawing/helper.py +++ b/src/bonsai/bonsai/bim/module/drawing/helper.py @@ -204,6 +204,8 @@ def format_distance( tx_dist = "" if feet is not None: tx_dist += str(feet) + "'" + if not feet and not add_inches: + tx_dist += str(feet) + "'" if feet and add_inches: tx_dist += " - " if not feet and value < 0: