- in Distance Plugin made sure that the 0.0 value for the angle is displayed

This commit is contained in:
Marius Stanciu
2022-03-11 14:55:59 +02:00
committed by Marius
parent a3a8fbf8d5
commit 30d899ad89
2 changed files with 2 additions and 1 deletions

View File

@@ -594,7 +594,7 @@ class Distance(AppTool):
return angle
def display_angle(self, val):
if val:
if val is not None:
self.ui.angle_entry.set_value(str(self.app.dec_format(val, self.decimals)))
def display_start(self, val):