Remove rounding from waypoint timing in the UI.

This is behaving strangely on some machines. Stop hiding the details
in the UI while we debug.
This commit is contained in:
Dan Albert
2020-11-01 01:41:53 -08:00
parent 08f0c9d30a
commit ab67a38ca5
4 changed files with 4 additions and 10 deletions

View File

@@ -349,7 +349,6 @@ class QLiberationMap(QGraphicsView):
if time is None:
tot = ""
else:
time = datetime.timedelta(seconds=int(time.total_seconds()))
tot = f"{prefix} T+{time}"
pen = QPen(QColor("black"), 0.3)